Skip to content

Commit

Permalink
Input: ar1021 - fix typo in preprocessor macro name
Browse files Browse the repository at this point in the history
Fix spelling mistake.

Signed-off-by: Flavio Suligoi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
  • Loading branch information
flavio-suligoi authored and dtor committed Nov 12, 2019
1 parent d843304 commit ee85fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/input/touchscreen/ar1021_i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <linux/irq.h>
#include <linux/interrupt.h>

#define AR1021_TOCUH_PKG_SIZE 5
#define AR1021_TOUCH_PKG_SIZE 5

#define AR1021_MAX_X 4095
#define AR1021_MAX_Y 4095
Expand All @@ -25,7 +25,7 @@
struct ar1021_i2c {
struct i2c_client *client;
struct input_dev *input;
u8 data[AR1021_TOCUH_PKG_SIZE];
u8 data[AR1021_TOUCH_PKG_SIZE];
};

static irqreturn_t ar1021_i2c_irq(int irq, void *dev_id)
Expand Down

0 comments on commit ee85fbe

Please sign in to comment.