diff options
| author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2016-02-12 14:09:49 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-14 16:52:53 -0800 |
| commit | 814625b539d36d57cb06f412714ec31d7fcd23db (patch) | |
| tree | b8858b8277599cd1bc0f978e1d76c2158ce08a3e /drivers/platform | |
| parent | c272dc2da14cde0bfd9495a5aafb8e3e94f35601 (diff) | |
staging: goldfish: goldfish_nand: Return correct error code
The return value of devm_kzalloc on failure of allocation of memory should
be -ENOMEM and not -1.
Found using Coccinelle. A simplified version of the semantic patch
used is:
//<smpl>
@@
expression *e;
@@
e = devm_kzalloc(...);
if (e == NULL) {
...
return
- -1
+ -ENOMEM
;
}
//</smpl>
The single call site does not perform any checks on the return value, hence
no change is required at the call site.
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/platform')
0 files changed, 0 insertions, 0 deletions
