]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
hwmon: (ds620) move header file out of I2C realm
authorWolfram Sang <wsa@the-dreams.de>
Sun, 21 May 2017 20:34:40 +0000 (22:34 +0200)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 12 Jun 2017 00:08:19 +0000 (17:08 -0700)
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>
drivers/hwmon/ds620.c
include/linux/i2c/ds620.h [deleted file]
include/linux/platform_data/ds620.h [new file with mode: 0644]

index 0043a4c02b85b4007d1972e50709801510df1a1d..57d6958c74b8fa27496df8dd7a5ef62e3945947b 100644 (file)
@@ -30,7 +30,7 @@
 #include <linux/err.h>
 #include <linux/mutex.h>
 #include <linux/sysfs.h>
-#include <linux/i2c/ds620.h>
+#include <linux/platform_data/ds620.h>
 
 /*
  * Many DS620 constants specified below
diff --git a/include/linux/i2c/ds620.h b/include/linux/i2c/ds620.h
deleted file mode 100644 (file)
index 736bb87..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _LINUX_DS620_H
-#define _LINUX_DS620_H
-
-#include <linux/types.h>
-#include <linux/i2c.h>
-
-/* platform data for the DS620 temperature sensor and thermostat */
-
-struct ds620_platform_data {
-       /*
-        *  Thermostat output pin PO mode:
-        *  0 = always low (default)
-        *  1 = PO_LOW
-        *  2 = PO_HIGH
-        *
-        * (see Documentation/hwmon/ds620)
-        */
-       int pomode;
-};
-
-#endif /* _LINUX_DS620_H */
diff --git a/include/linux/platform_data/ds620.h b/include/linux/platform_data/ds620.h
new file mode 100644 (file)
index 0000000..736bb87
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef _LINUX_DS620_H
+#define _LINUX_DS620_H
+
+#include <linux/types.h>
+#include <linux/i2c.h>
+
+/* platform data for the DS620 temperature sensor and thermostat */
+
+struct ds620_platform_data {
+       /*
+        *  Thermostat output pin PO mode:
+        *  0 = always low (default)
+        *  1 = PO_LOW
+        *  2 = PO_HIGH
+        *
+        * (see Documentation/hwmon/ds620)
+        */
+       int pomode;
+};
+
+#endif /* _LINUX_DS620_H */