diff options
| author | H Hartley Sweeten <hartleys@visionengravers.com> | 2009-09-15 11:18:13 -0400 |
|---|---|---|
| committer | Jean Delvare <khali@linux-fr.org> | 2009-09-15 11:18:13 -0400 |
| commit | 6055fae8aceee41471edfd1876e5617d16e028fe (patch) | |
| tree | 5579918819802d746c6854c183b3ed8cdc7c5613 | |
| parent | 1915fb70fa23230894cd35d98fcac5a168ec5c23 (diff) | |
hwmon: Include <linux/io.h> instead of <asm/io.h>
Drivers should be including <linux/io.h> instead of <asm/io.h>.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Alistair John Strachan <alistair@devzero.co.uk>
Cc: Nicolas Boichat <nicolas@boichat.ch>
Cc: Juerg Haefliger <juergh@gmail.com>
Cc: Frank Seidel <frank@f-seidel.de>
Acked-by: Jim Cromie <jim.cromie@gmail.com>
Cc: "Mark M. Hoffman" <mhoffman@lightlink.com>
Cc: Roger Lucas <vt8231@hiddenengine.co.uk>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
| -rw-r--r-- | drivers/hwmon/abituguru.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/abituguru3.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/applesmc.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/dme1737.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/f71805f.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/hdaps.c | 3 | ||||
| -rw-r--r-- | drivers/hwmon/it87.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/lm78.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/pc87360.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/pc87427.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/sis5595.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/smsc47b397.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/smsc47m1.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/via686a.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/vt1211.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/vt8231.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/w83627ehf.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/w83627hf.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/w83781d.c | 2 |
19 files changed, 19 insertions, 20 deletions
diff --git a/drivers/hwmon/abituguru.c b/drivers/hwmon/abituguru.c index 4dbdb81ea3b1..03694cc17a32 100644 --- a/drivers/hwmon/abituguru.c +++ b/drivers/hwmon/abituguru.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | #include <linux/hwmon.h> | 32 | #include <linux/hwmon.h> |
| 33 | #include <linux/hwmon-sysfs.h> | 33 | #include <linux/hwmon-sysfs.h> |
| 34 | #include <linux/dmi.h> | 34 | #include <linux/dmi.h> |
| 35 | #include <asm/io.h> | 35 | #include <linux/io.h> |
| 36 | 36 | ||
| 37 | /* Banks */ | 37 | /* Banks */ |
| 38 | #define ABIT_UGURU_ALARM_BANK 0x20 /* 1x 3 bytes */ | 38 | #define ABIT_UGURU_ALARM_BANK 0x20 /* 1x 3 bytes */ |
diff --git a/drivers/hwmon/abituguru3.c b/drivers/hwmon/abituguru3.c index d45c569770f0..3cf28af614b5 100644 --- a/drivers/hwmon/abituguru3.c +++ b/drivers/hwmon/abituguru3.c | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | #include <linux/hwmon.h> | 34 | #include <linux/hwmon.h> |
| 35 | #include <linux/hwmon-sysfs.h> | 35 | #include <linux/hwmon-sysfs.h> |
| 36 | #include <linux/dmi.h> | 36 | #include <linux/dmi.h> |
| 37 | #include <asm/io.h> | 37 | #include <linux/io.h> |
| 38 | 38 | ||
| 39 | /* uGuru3 bank addresses */ | 39 | /* uGuru3 bank addresses */ |
| 40 | #define ABIT_UGURU3_SETTINGS_BANK 0x01 | 40 | #define ABIT_UGURU3_SETTINGS_BANK 0x01 |
diff --git a/drivers/hwmon/applesmc.c b/drivers/hwmon/applesmc.c index 678e34b01e52..753b34885f9d 100644 --- a/drivers/hwmon/applesmc.c +++ b/drivers/hwmon/applesmc.c | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | #include <linux/dmi.h> | 35 | #include <linux/dmi.h> |
| 36 | #include <linux/mutex.h> | 36 | #include <linux/mutex.h> |
| 37 | #include <linux/hwmon-sysfs.h> | 37 | #include <linux/hwmon-sysfs.h> |
| 38 | #include <asm/io.h> | 38 | #include <linux/io.h> |
| 39 | #include <linux/leds.h> | 39 | #include <linux/leds.h> |
| 40 | #include <linux/hwmon.h> | 40 | #include <linux/hwmon.h> |
| 41 | #include <linux/workqueue.h> | 41 | #include <linux/workqueue.h> |
diff --git a/drivers/hwmon/dme1737.c b/drivers/hwmon/dme1737.c index 3df202a9ad72..9814d51b3af4 100644 --- a/drivers/hwmon/dme1737.c +++ b/drivers/hwmon/dme1737.c | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | #include <linux/err.h> | 35 | #include <linux/err.h> |
| 36 | #include <linux/mutex.h> | 36 | #include <linux/mutex.h> |
| 37 | #include <linux/acpi.h> | 37 | #include <linux/acpi.h> |
| 38 | #include <asm/io.h> | 38 | #include <linux/io.h> |
| 39 | 39 | ||
| 40 | /* ISA device, if found */ | 40 | /* ISA device, if found */ |
| 41 | static struct platform_device *pdev; | 41 | static struct platform_device *pdev; |
diff --git a/drivers/hwmon/f71805f.c b/drivers/hwmon/f71805f.c index 899876579253..525a00bd70b1 100644 --- a/drivers/hwmon/f71805f.c +++ b/drivers/hwmon/f71805f.c | |||
| @@ -40,7 +40,7 @@ | |||
| 40 | #include <linux/sysfs.h> | 40 | #include <linux/sysfs.h> |
| 41 | #include <linux/ioport.h> | 41 | #include <linux/ioport.h> |
| 42 | #include <linux/acpi.h> | 42 | #include <linux/acpi.h> |
| 43 | #include <asm/io.h> | 43 | #include <linux/io.h> |
| 44 | 44 | ||
| 45 | static unsigned short force_id; | 45 | static unsigned short force_id; |
| 46 | module_param(force_id, ushort, 0); | 46 | module_param(force_id, ushort, 0); |
diff --git a/drivers/hwmon/hdaps.c b/drivers/hwmon/hdaps.c index d3612a1f1981..be2d131e405c 100644 --- a/drivers/hwmon/hdaps.c +++ b/drivers/hwmon/hdaps.c | |||
| @@ -35,8 +35,7 @@ | |||
| 35 | #include <linux/timer.h> | 35 | #include <linux/timer.h> |
| 36 | #include <linux/dmi.h> | 36 | #include <linux/dmi.h> |
| 37 | #include <linux/jiffies.h> | 37 | #include <linux/jiffies.h> |
| 38 | 38 | #include <linux/io.h> | |
| 39 | #include <asm/io.h> | ||
| 40 | 39 | ||
| 41 | #define HDAPS_LOW_PORT 0x1600 /* first port used by hdaps */ | 40 | #define HDAPS_LOW_PORT 0x1600 /* first port used by hdaps */ |
| 42 | #define HDAPS_NR_PORTS 0x30 /* number of ports: 0x1600 - 0x162f */ | 41 | #define HDAPS_NR_PORTS 0x30 /* number of ports: 0x1600 - 0x162f */ |
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 9157247fed8e..ffeb2a10e1a7 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
| @@ -50,7 +50,7 @@ | |||
| 50 | #include <linux/string.h> | 50 | #include <linux/string.h> |
| 51 | #include <linux/dmi.h> | 51 | #include <linux/dmi.h> |
| 52 | #include <linux/acpi.h> | 52 | #include <linux/acpi.h> |
| 53 | #include <asm/io.h> | 53 | #include <linux/io.h> |
| 54 | 54 | ||
| 55 | #define DRVNAME "it87" | 55 | #define DRVNAME "it87" |
| 56 | 56 | ||
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index a1787fdf5b9f..f7e70163e016 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | #include <linux/hwmon-sysfs.h> | 31 | #include <linux/hwmon-sysfs.h> |
| 32 | #include <linux/err.h> | 32 | #include <linux/err.h> |
| 33 | #include <linux/mutex.h> | 33 | #include <linux/mutex.h> |
| 34 | #include <asm/io.h> | 34 | #include <linux/io.h> |
| 35 | 35 | ||
| 36 | /* ISA device, if found */ | 36 | /* ISA device, if found */ |
| 37 | static struct platform_device *pdev; | 37 | static struct platform_device *pdev; |
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index fb052fea3744..4a64b85d4ec9 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | #include <linux/err.h> | 44 | #include <linux/err.h> |
| 45 | #include <linux/mutex.h> | 45 | #include <linux/mutex.h> |
| 46 | #include <linux/acpi.h> | 46 | #include <linux/acpi.h> |
| 47 | #include <asm/io.h> | 47 | #include <linux/io.h> |
| 48 | 48 | ||
| 49 | static u8 devid; | 49 | static u8 devid; |
| 50 | static struct platform_device *pdev; | 50 | static struct platform_device *pdev; |
diff --git a/drivers/hwmon/pc87427.c b/drivers/hwmon/pc87427.c index 3a8a0f7a7736..4e0de0e06d78 100644 --- a/drivers/hwmon/pc87427.c +++ b/drivers/hwmon/pc87427.c | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | #include <linux/sysfs.h> | 33 | #include <linux/sysfs.h> |
| 34 | #include <linux/ioport.h> | 34 | #include <linux/ioport.h> |
| 35 | #include <linux/acpi.h> | 35 | #include <linux/acpi.h> |
| 36 | #include <asm/io.h> | 36 | #include <linux/io.h> |
| 37 | 37 | ||
| 38 | static unsigned short force_id; | 38 | static unsigned short force_id; |
| 39 | module_param(force_id, ushort, 0); | 39 | module_param(force_id, ushort, 0); |
diff --git a/drivers/hwmon/sis5595.c b/drivers/hwmon/sis5595.c index aa2e8318f167..12f2e7086560 100644 --- a/drivers/hwmon/sis5595.c +++ b/drivers/hwmon/sis5595.c | |||
| @@ -63,7 +63,7 @@ | |||
| 63 | #include <linux/mutex.h> | 63 | #include <linux/mutex.h> |
| 64 | #include <linux/sysfs.h> | 64 | #include <linux/sysfs.h> |
| 65 | #include <linux/acpi.h> | 65 | #include <linux/acpi.h> |
| 66 | #include <asm/io.h> | 66 | #include <linux/io.h> |
| 67 | 67 | ||
| 68 | 68 | ||
| 69 | /* If force_addr is set to anything different from 0, we forcibly enable | 69 | /* If force_addr is set to anything different from 0, we forcibly enable |
diff --git a/drivers/hwmon/smsc47b397.c b/drivers/hwmon/smsc47b397.c index 6f6d52b4fb64..f46d936c12da 100644 --- a/drivers/hwmon/smsc47b397.c +++ b/drivers/hwmon/smsc47b397.c | |||
| @@ -37,7 +37,7 @@ | |||
| 37 | #include <linux/init.h> | 37 | #include <linux/init.h> |
| 38 | #include <linux/mutex.h> | 38 | #include <linux/mutex.h> |
| 39 | #include <linux/acpi.h> | 39 | #include <linux/acpi.h> |
| 40 | #include <asm/io.h> | 40 | #include <linux/io.h> |
| 41 | 41 | ||
| 42 | static unsigned short force_id; | 42 | static unsigned short force_id; |
| 43 | module_param(force_id, ushort, 0); | 43 | module_param(force_id, ushort, 0); |
diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c index ba75bfcf14ce..8ad50fdba00d 100644 --- a/drivers/hwmon/smsc47m1.c +++ b/drivers/hwmon/smsc47m1.c | |||
| @@ -38,7 +38,7 @@ | |||
| 38 | #include <linux/mutex.h> | 38 | #include <linux/mutex.h> |
| 39 | #include <linux/sysfs.h> | 39 | #include <linux/sysfs.h> |
| 40 | #include <linux/acpi.h> | 40 | #include <linux/acpi.h> |
| 41 | #include <asm/io.h> | 41 | #include <linux/io.h> |
| 42 | 42 | ||
| 43 | static unsigned short force_id; | 43 | static unsigned short force_id; |
| 44 | module_param(force_id, ushort, 0); | 44 | module_param(force_id, ushort, 0); |
diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c index a022aedcaacb..39e82a492f26 100644 --- a/drivers/hwmon/via686a.c +++ b/drivers/hwmon/via686a.c | |||
| @@ -42,7 +42,7 @@ | |||
| 42 | #include <linux/mutex.h> | 42 | #include <linux/mutex.h> |
| 43 | #include <linux/sysfs.h> | 43 | #include <linux/sysfs.h> |
| 44 | #include <linux/acpi.h> | 44 | #include <linux/acpi.h> |
| 45 | #include <asm/io.h> | 45 | #include <linux/io.h> |
| 46 | 46 | ||
| 47 | 47 | ||
| 48 | /* If force_addr is set to anything different from 0, we forcibly enable | 48 | /* If force_addr is set to anything different from 0, we forcibly enable |
diff --git a/drivers/hwmon/vt1211.c b/drivers/hwmon/vt1211.c index 73f77a9b8b18..120b5d6dbd33 100644 --- a/drivers/hwmon/vt1211.c +++ b/drivers/hwmon/vt1211.c | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | #include <linux/mutex.h> | 33 | #include <linux/mutex.h> |
| 34 | #include <linux/ioport.h> | 34 | #include <linux/ioport.h> |
| 35 | #include <linux/acpi.h> | 35 | #include <linux/acpi.h> |
| 36 | #include <asm/io.h> | 36 | #include <linux/io.h> |
| 37 | 37 | ||
| 38 | static int uch_config = -1; | 38 | static int uch_config = -1; |
| 39 | module_param(uch_config, int, 0); | 39 | module_param(uch_config, int, 0); |
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index 9982b45fbb14..470a1226ba2b 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | #include <linux/err.h> | 36 | #include <linux/err.h> |
| 37 | #include <linux/mutex.h> | 37 | #include <linux/mutex.h> |
| 38 | #include <linux/acpi.h> | 38 | #include <linux/acpi.h> |
| 39 | #include <asm/io.h> | 39 | #include <linux/io.h> |
| 40 | 40 | ||
| 41 | static int force_addr; | 41 | static int force_addr; |
| 42 | module_param(force_addr, int, 0); | 42 | module_param(force_addr, int, 0); |
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index 0e9746913d2b..bb5e78748783 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c | |||
| @@ -51,7 +51,7 @@ | |||
| 51 | #include <linux/err.h> | 51 | #include <linux/err.h> |
| 52 | #include <linux/mutex.h> | 52 | #include <linux/mutex.h> |
| 53 | #include <linux/acpi.h> | 53 | #include <linux/acpi.h> |
| 54 | #include <asm/io.h> | 54 | #include <linux/io.h> |
| 55 | #include "lm75.h" | 55 | #include "lm75.h" |
| 56 | 56 | ||
| 57 | enum kinds { w83627ehf, w83627dhg, w83627dhg_p, w83667hg }; | 57 | enum kinds { w83627ehf, w83627dhg, w83627dhg_p, w83667hg }; |
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c index 389150ba30d3..2be28ac4ede0 100644 --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c | |||
| @@ -51,7 +51,7 @@ | |||
| 51 | #include <linux/mutex.h> | 51 | #include <linux/mutex.h> |
| 52 | #include <linux/ioport.h> | 52 | #include <linux/ioport.h> |
| 53 | #include <linux/acpi.h> | 53 | #include <linux/acpi.h> |
| 54 | #include <asm/io.h> | 54 | #include <linux/io.h> |
| 55 | #include "lm75.h" | 55 | #include "lm75.h" |
| 56 | 56 | ||
| 57 | static struct platform_device *pdev; | 57 | static struct platform_device *pdev; |
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c index 0bdab959b736..d27ed1bac002 100644 --- a/drivers/hwmon/w83781d.c +++ b/drivers/hwmon/w83781d.c | |||
| @@ -48,7 +48,7 @@ | |||
| 48 | #ifdef CONFIG_ISA | 48 | #ifdef CONFIG_ISA |
| 49 | #include <linux/platform_device.h> | 49 | #include <linux/platform_device.h> |
| 50 | #include <linux/ioport.h> | 50 | #include <linux/ioport.h> |
| 51 | #include <asm/io.h> | 51 | #include <linux/io.h> |
| 52 | #endif | 52 | #endif |
| 53 | 53 | ||
| 54 | #include "lm75.h" | 54 | #include "lm75.h" |
