aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/inexio.c
diff options
context:
space:
mode:
authorHardik Singh Rathore <hardiksingh.k@gmail.com>2018-12-21 01:06:42 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2018-12-21 01:08:51 -0800
commit249d1bb22901a214f3e7265362057fba471b7204 (patch)
tree85ca146550577111804cbf3c2ef52dded2736ef0 /drivers/input/touchscreen/inexio.c
parentInput: add official Raspberry Pi's touchscreen driver (diff)
downloadlinux-dev-249d1bb22901a214f3e7265362057fba471b7204.tar.xz
linux-dev-249d1bb22901a214f3e7265362057fba471b7204.zip
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/inexio.c')
-rw-r--r--drivers/input/touchscreen/inexio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/inexio.c b/drivers/input/touchscreen/inexio.c
index b9bc56233ccc..13bd0bf580a7 100644
--- a/drivers/input/touchscreen/inexio.c
+++ b/drivers/input/touchscreen/inexio.c
@@ -79,7 +79,7 @@ static void inexio_process_data(struct inexio *pinexio)
static irqreturn_t inexio_interrupt(struct serio *serio,
unsigned char data, unsigned int flags)
{
- struct inexio* pinexio = serio_get_drvdata(serio);
+ struct inexio *pinexio = serio_get_drvdata(serio);
pinexio->data[pinexio->idx] = data;
@@ -97,7 +97,7 @@ static irqreturn_t inexio_interrupt(struct serio *serio,
static void inexio_disconnect(struct serio *serio)
{
- struct inexio* pinexio = serio_get_drvdata(serio);
+ struct inexio *pinexio = serio_get_drvdata(serio);
input_get_device(pinexio->dev);
input_unregister_device(pinexio->dev);