Skip to content

Commit 6906f50

Browse files
Uwe Kleine-Königdtor
authored andcommitted
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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20230318225110.261439-1-u.kleine-koenig@pengutronix.de Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent f1e96f0 commit 6906f50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/input/keyboard/iqs62x-keys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ static int iqs62x_keys_remove(struct platform_device *pdev)
320320
if (ret)
321321
dev_err(&pdev->dev, "Failed to unregister notifier: %d\n", ret);
322322

323-
return ret;
323+
return 0;
324324
}
325325

326326
static struct platform_driver iqs62x_keys_platform_driver = {

0 commit comments

Comments
 (0)