diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2017-05-23 02:28:42 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-05-23 03:26:58 +0300 |
commit | 0d846a4cbbcbf81e527542d15e165b8f774bace5 (patch) | |
tree | a9aa45a1a5f7f6cce72f872b1b28d7ca4d88226f /drivers | |
parent | 8cd9ab9e19b8cf23a7cae503af81ae70154e7956 (diff) | |
download | linux-0d846a4cbbcbf81e527542d15e165b8f774bace5.tar.xz |
Input: mms114 - move header file out of I2C realm
include/linux/i2c is not for client devices. Move the header file to a
more appropriate location.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/input/touchscreen/mms114.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c index 1fafc9f57af6..e5eeb6311f7d 100644 --- a/drivers/input/touchscreen/mms114.c +++ b/drivers/input/touchscreen/mms114.c @@ -11,9 +11,9 @@ #include <linux/delay.h> #include <linux/of.h> #include <linux/i2c.h> -#include <linux/i2c/mms114.h> #include <linux/input/mt.h> #include <linux/interrupt.h> +#include <linux/platform_data/mms114.h> #include <linux/regulator/consumer.h> #include <linux/slab.h> |