diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2017-05-21 22:34:42 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-06-11 17:08:19 -0700 |
commit | 0c9fe1614126171c70e0dc0b0635d45a327ac82a (patch) | |
tree | d4769a7417d478ff753bc2e49f906ac05cc81398 /drivers/hwmon | |
parent | 8116e8dd564fcbadf9f3697dcd0c3d37c049fb45 (diff) | |
download | linux-0c9fe1614126171c70e0dc0b0635d45a327ac82a.tar.bz2 |
hwmon: (max6639) 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: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/max6639.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/max6639.c b/drivers/hwmon/max6639.c index dac6d85f2fd9..f98a83c79ff1 100644 --- a/drivers/hwmon/max6639.c +++ b/drivers/hwmon/max6639.c @@ -32,7 +32,7 @@ #include <linux/hwmon-sysfs.h> #include <linux/err.h> #include <linux/mutex.h> -#include <linux/i2c/max6639.h> +#include <linux/platform_data/max6639.h> /* Addresses to scan */ static const unsigned short normal_i2c[] = { 0x2c, 0x2e, 0x2f, I2C_CLIENT_END }; |