Commit 6906f506 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Dmitry Torokhov

Input: iqs62x-keys - suppress duplicated error message in .remove()

If a platform driver's remove callback returns non-zero the driver core
emits an error message. In such a case however iqs62x_keys_remove()
already issued a (better) message. So return zero to suppress the
generic message.

This patch has no other side effects as platform_remove() ignores the
return value of .remove() after the warning.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230318225110.261439-1-u.kleine-koenig@pengutronix.deSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f1e96f06
...@@ -320,7 +320,7 @@ static int iqs62x_keys_remove(struct platform_device *pdev) ...@@ -320,7 +320,7 @@ static int iqs62x_keys_remove(struct platform_device *pdev)
if (ret) if (ret)
dev_err(&pdev->dev, "Failed to unregister notifier: %d\n", ret); dev_err(&pdev->dev, "Failed to unregister notifier: %d\n", ret);
return ret; return 0;
} }
static struct platform_driver iqs62x_keys_platform_driver = { static struct platform_driver iqs62x_keys_platform_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment