Message ID | 7d14b5af-bc11-305c-6a90-18e8a3b3196c@users.sourceforge.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Am Samstag, 20. Januar 2018, 21:20:38 CET schrieb SF Markus Elfring: > From: Markus Elfring <elfring@users.sourceforge.net> > Date: Sat, 20 Jan 2018 20:43:06 +0100 > > The script "checkpatch.pl" pointed information out like the following. > > WARNING: void function return statements are not generally useful > > Thus remove such a statement in the affected function. > > Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> if it helps Reviewed-by: Heiko Stuebner <heiko@sntech.de> -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/input/touchscreen/zforce_ts.c b/drivers/input/touchscreen/zforce_ts.c index 9fb6b3f201f9..e462a152b4e6 100644 --- a/drivers/input/touchscreen/zforce_ts.c +++ b/drivers/input/touchscreen/zforce_ts.c @@ -612,8 +612,6 @@ static void zforce_input_close(struct input_dev *dev) ret = zforce_stop(ts); if (ret) dev_warn(&client->dev, "stopping zforce failed\n"); - - return; } static int __maybe_unused zforce_suspend(struct device *dev)