pinctrl: msm: Delete an error message for a failed memory allocation in msm_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: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
ce8b8d70d4
commit
203f4b0651
|
@ -898,10 +898,9 @@ int msm_pinctrl_probe(struct platform_device *pdev,
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
|
pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
|
||||||
if (!pctrl) {
|
if (!pctrl)
|
||||||
dev_err(&pdev->dev, "Can't allocate msm_pinctrl\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
pctrl->dev = &pdev->dev;
|
pctrl->dev = &pdev->dev;
|
||||||
pctrl->soc = soc_data;
|
pctrl->soc = soc_data;
|
||||||
pctrl->chip = msm_gpio_template;
|
pctrl->chip = msm_gpio_template;
|
||||||
|
|
Loading…
Reference in New Issue