projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5e86db
)
niu: Fix error handling
author
Dan Carpenter
<error27@gmail.com>
Wed, 8 Apr 2009 22:44:04 +0000
(15:44 -0700)
committer
David S. Miller
<davem@davemloft.net>
Wed, 8 Apr 2009 22:44:04 +0000
(15:44 -0700)
platform_device_register_simple() returns ERR_PTR(), not NULL, if an error
occurs.
Found by smatch (http://repo.or.cz/w/smatch.git). Compile tested.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/niu.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/niu.c
b/drivers/net/niu.c
index 73cac6c78cb6f97131ec0a52ec56340a93f56594..2cd6109b8586f3b86e42bda00a7a46ffb1569904 100644
(file)
--- a/
drivers/net/niu.c
+++ b/
drivers/net/niu.c
@@
-9542,7
+9542,7
@@
static struct niu_parent * __devinit niu_new_parent(struct niu *np,
plat_dev = platform_device_register_simple("niu", niu_parent_index,
NULL, 0);
- if (
!plat_dev
)
+ if (
IS_ERR(plat_dev)
)
return NULL;
for (i = 0; attr_name(niu_parent_attributes[i]); i++) {