diff options
author | Hardik Singh Rathore <hardiksingh.k@gmail.com> | 2018-12-21 12:06:42 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-12-21 12:08:51 +0300 |
commit | 249d1bb22901a214f3e7265362057fba471b7204 (patch) | |
tree | 85ca146550577111804cbf3c2ef52dded2736ef0 /drivers/input/touchscreen/ad7879.c | |
parent | 0b9f28fed3f70ff9a0380fe308739dd72a30a6f6 (diff) | |
download | linux-249d1bb22901a214f3e7265362057fba471b7204.tar.xz |
Input: touchscreen - fix coding style issue
This patch fixes the coding style problem reported
by checkpatch.pl as below:
ERROR: foo* bar should be "foo *bar"
Signed-off-by: Hardik Singh Rathore <hardiksingh.k@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/ad7879.c')
-rw-r--r-- | drivers/input/touchscreen/ad7879.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/ad7879.c b/drivers/input/touchscreen/ad7879.c index 2aae880c8aa6..6fa714c587b4 100644 --- a/drivers/input/touchscreen/ad7879.c +++ b/drivers/input/touchscreen/ad7879.c @@ -289,7 +289,7 @@ static int ad7879_open(struct input_dev *input) return 0; } -static void ad7879_close(struct input_dev* input) +static void ad7879_close(struct input_dev *input) { struct ad7879 *ts = input_get_drvdata(input); |