projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9736a1
)
mfd: max14577: Cleanup an error message
author
Dan Carpenter
<dan.carpenter@oracle.com>
Wed, 4 Dec 2013 14:07:12 +0000
(17:07 +0300)
committer
Lee Jones
<lee.jones@linaro.org>
Tue, 21 Jan 2014 08:27:53 +0000
(08:27 +0000)
"pdata" is a NULL not an ERR_PTR so there is no use printing it.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/max14577.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/max14577.c
b/drivers/mfd/max14577.c
index
1337c45
..
a5e1c37
100644
(file)
--- a/
drivers/mfd/max14577.c
+++ b/
drivers/mfd/max14577.c
@@
-96,8
+96,7
@@
static int max14577_i2c_probe(struct i2c_client *i2c,
}
if (!pdata) {
- dev_err(&i2c->dev, "No platform data found: %ld\n",
- PTR_ERR(pdata));
+ dev_err(&i2c->dev, "No platform data found.\n");
return -EINVAL;
}