mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
pinctrl: spear: Delete an error message for a failed memory allocation in spear_pinctrl_probe()
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> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
b5623acb8d
commit
51d7a036a6
@ -361,10 +361,8 @@ int spear_pinctrl_probe(struct platform_device *pdev,
|
|||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
pmx = devm_kzalloc(&pdev->dev, sizeof(*pmx), GFP_KERNEL);
|
pmx = devm_kzalloc(&pdev->dev, sizeof(*pmx), GFP_KERNEL);
|
||||||
if (!pmx) {
|
if (!pmx)
|
||||||
dev_err(&pdev->dev, "Can't alloc spear_pmx\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
pmx->vbase = devm_ioremap_resource(&pdev->dev, res);
|
pmx->vbase = devm_ioremap_resource(&pdev->dev, res);
|
||||||
|
Loading…
Reference in New Issue
Block a user