projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17963b5
)
mfd: max8997: Delete error message for a failed memory allocation
author
Markus Elfring
<elfring@users.sourceforge.net>
Mon, 15 Jan 2018 08:35:17 +0000
(09:35 +0100)
committer
Lee Jones
<lee.jones@linaro.org>
Wed, 16 May 2018 08:21:48 +0000
(09:21 +0100)
Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/max8997.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/max8997.c
b/drivers/mfd/max8997.c
index 2d6e2c39278626d06bd45ed70e73d1a457a835cc..3f554c44752183a917f6229a4bc26ec81a042e00 100644
(file)
--- a/
drivers/mfd/max8997.c
+++ b/
drivers/mfd/max8997.c
@@
-148,10
+148,8
@@
static struct max8997_platform_data *max8997_i2c_parse_dt_pdata(
struct max8997_platform_data *pd;
pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
- if (!pd) {
- dev_err(dev, "could not allocate memory for pdata\n");
+ if (!pd)
return ERR_PTR(-ENOMEM);
- }
pd->ono = irq_of_parse_and_map(dev->of_node, 1);