aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2018-01-22 10:55:30 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2018-01-22 16:28:59 -0800
commit2cdc8749613de4e52f14cdb43f686d59173ed24e (patch)
treeb6895903e552501d72b03e598bf7030348b6388a /drivers
parentInput: auo-pixcir-ts - remove custom log for a failed memory allocation (diff)
downloadlinux-dev-2cdc8749613de4e52f14cdb43f686d59173ed24e.tar.xz
linux-dev-2cdc8749613de4e52f14cdb43f686d59173ed24e.zip
Input: auo-pixcir-ts - delete an unnecessary return statement
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> Reviewed-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/input/touchscreen/auo-pixcir-ts.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c b/drivers/input/touchscreen/auo-pixcir-ts.c
index 398e27c48a51..df8ca856393b 100644
--- a/drivers/input/touchscreen/auo-pixcir-ts.c
+++ b/drivers/input/touchscreen/auo-pixcir-ts.c
@@ -408,8 +408,6 @@ static void auo_pixcir_input_close(struct input_dev *dev)
struct auo_pixcir_ts *ts = input_get_drvdata(dev);
auo_pixcir_stop(ts);
-
- return;
}
static int __maybe_unused auo_pixcir_suspend(struct device *dev)