diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-12-28 18:12:17 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-01-08 10:15:46 +0300 |
commit | 659e7142bd91a2054368f281801f8c47633e4487 (patch) | |
tree | f7a8554a5e9818c44bf1d82f281c088650885ff7 /drivers/pinctrl/vt8500/pinctrl-wm8650.c | |
parent | b18b2e775934470e154e68799946bd85e48a77fa (diff) | |
download | linux-659e7142bd91a2054368f281801f8c47633e4487.tar.xz |
pinctrl: vt8500: Delete an error message for a failed memory allocation in five functions
Omit an extra message for a memory allocation failure in these functions.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/vt8500/pinctrl-wm8650.c')
-rw-r--r-- | drivers/pinctrl/vt8500/pinctrl-wm8650.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pinctrl/vt8500/pinctrl-wm8650.c b/drivers/pinctrl/vt8500/pinctrl-wm8650.c index 270dd491f5a1..4678227d4001 100644 --- a/drivers/pinctrl/vt8500/pinctrl-wm8650.c +++ b/drivers/pinctrl/vt8500/pinctrl-wm8650.c @@ -327,10 +327,8 @@ static int wm8650_pinctrl_probe(struct platform_device *pdev) struct wmt_pinctrl_data *data; data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); - if (!data) { - dev_err(&pdev->dev, "failed to allocate data\n"); + if (!data) return -ENOMEM; - } data->banks = wm8650_banks; data->nbanks = ARRAY_SIZE(wm8650_banks); |