diff options
-rw-r--r-- | drivers/ide/ide-io-std.c | 7 | ||||
-rw-r--r-- | drivers/ide/tx4938ide.c | 2 | ||||
-rw-r--r-- | drivers/ide/tx4939ide.c | 2 | ||||
-rw-r--r-- | include/linux/ide.h | 7 |
4 files changed, 11 insertions, 7 deletions
diff --git a/drivers/ide/ide-io-std.c b/drivers/ide/ide-io-std.c index 45b43dd49cda..9a8da6744d93 100644 --- a/drivers/ide/ide-io-std.c +++ b/drivers/ide/ide-io-std.c | |||
@@ -2,6 +2,13 @@ | |||
2 | #include <linux/kernel.h> | 2 | #include <linux/kernel.h> |
3 | #include <linux/ide.h> | 3 | #include <linux/ide.h> |
4 | 4 | ||
5 | #if defined(CONFIG_ARM) || defined(CONFIG_M68K) || defined(CONFIG_MIPS) || \ | ||
6 | defined(CONFIG_PARISC) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) | ||
7 | #include <asm/ide.h> | ||
8 | #else | ||
9 | #include <asm-generic/ide_iops.h> | ||
10 | #endif | ||
11 | |||
5 | /* | 12 | /* |
6 | * Conventional PIO operations for ATA devices | 13 | * Conventional PIO operations for ATA devices |
7 | */ | 14 | */ |
diff --git a/drivers/ide/tx4938ide.c b/drivers/ide/tx4938ide.c index d9095345f7ca..efade9e898b3 100644 --- a/drivers/ide/tx4938ide.c +++ b/drivers/ide/tx4938ide.c | |||
@@ -15,6 +15,8 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | |||
19 | #include <asm/ide.h> | ||
18 | #include <asm/txx9/tx4938.h> | 20 | #include <asm/txx9/tx4938.h> |
19 | 21 | ||
20 | static void tx4938ide_tune_ebusc(unsigned int ebus_ch, | 22 | static void tx4938ide_tune_ebusc(unsigned int ebus_ch, |
diff --git a/drivers/ide/tx4939ide.c b/drivers/ide/tx4939ide.c index 40b0812a045c..fb037a5e70b3 100644 --- a/drivers/ide/tx4939ide.c +++ b/drivers/ide/tx4939ide.c | |||
@@ -18,6 +18,8 @@ | |||
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | #include <linux/scatterlist.h> | 19 | #include <linux/scatterlist.h> |
20 | 20 | ||
21 | #include <asm/ide.h> | ||
22 | |||
21 | #define MODNAME "tx4939ide" | 23 | #define MODNAME "tx4939ide" |
22 | 24 | ||
23 | /* ATA Shadow Registers (8-bit except for Data which is 16-bit) */ | 25 | /* ATA Shadow Registers (8-bit except for Data which is 16-bit) */ |
diff --git a/include/linux/ide.h b/include/linux/ide.h index b7d95f09cc2e..47878719c56b 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -193,13 +193,6 @@ static inline void ide_std_init_ports(hw_regs_t *hw, | |||
193 | hw->io_ports.ctl_addr = ctl_addr; | 193 | hw->io_ports.ctl_addr = ctl_addr; |
194 | } | 194 | } |
195 | 195 | ||
196 | #if defined(CONFIG_ARM) || defined(CONFIG_M68K) || defined(CONFIG_MIPS) || \ | ||
197 | defined(CONFIG_PARISC) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) | ||
198 | #include <asm/ide.h> | ||
199 | #else | ||
200 | #include <asm-generic/ide_iops.h> | ||
201 | #endif | ||
202 | |||
203 | #define MAX_HWIFS 10 | 196 | #define MAX_HWIFS 10 |
204 | 197 | ||
205 | /* | 198 | /* |