diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2017-05-21 23:42:32 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-25 19:25:00 +0300 |
commit | 610387d162eb1beb6eb2009af5175dc6b44b8da6 (patch) | |
tree | 330c4055782de1718d543f0e259a0198d4204128 | |
parent | 4654bdb63910eaafd586c7c12b473ecc0b3ab94a (diff) | |
download | linux-610387d162eb1beb6eb2009af5175dc6b44b8da6.tar.xz |
misc: apds990x: 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/apds990x.c | 2 | ||||
-rw-r--r-- | include/linux/platform_data/apds990x.h (renamed from include/linux/i2c/apds990x.h) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/apds990x.c b/drivers/misc/apds990x.c index dfb72ecfa604..c341164edaad 100644 --- a/drivers/misc/apds990x.c +++ b/drivers/misc/apds990x.c @@ -32,7 +32,7 @@ #include <linux/delay.h> #include <linux/wait.h> #include <linux/slab.h> -#include <linux/i2c/apds990x.h> +#include <linux/platform_data/apds990x.h> /* Register map */ #define APDS990X_ENABLE 0x00 /* Enable of states and interrupts */ diff --git a/include/linux/i2c/apds990x.h b/include/linux/platform_data/apds990x.h index d186fcc5d257..d186fcc5d257 100644 --- a/include/linux/i2c/apds990x.h +++ b/include/linux/platform_data/apds990x.h |