diff options
| author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:34 -0400 |
|---|---|---|
| committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:34 -0400 |
| commit | 9dfcd15a6dc1ef81307295e08b797fa9212be71a (patch) | |
| tree | 68ed0ccf99ff3d0e6d6043687823cea905edac32 | |
| parent | 5c50427090303a6552949c14128200154ff69594 (diff) | |
ide: remove ide_default_io_ctl() macro
It is always == '((base) + 0x206)' if CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS=y
and it is not needed otherwise (arm, blackfin, parisc, ppc64, sh, sparc[64]).
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
| -rw-r--r-- | drivers/ide/ide.c | 2 | ||||
| -rw-r--r-- | include/asm-alpha/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-arm/ide.h | 8 | ||||
| -rw-r--r-- | include/asm-blackfin/ide.h | 4 | ||||
| -rw-r--r-- | include/asm-ia64/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-m32r/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-mips/mach-generic/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-parisc/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-powerpc/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-sh/ide.h | 3 | ||||
| -rw-r--r-- | include/asm-sparc/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-sparc64/ide.h | 2 | ||||
| -rw-r--r-- | include/asm-x86/ide.h | 2 |
13 files changed, 1 insertions, 34 deletions
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c index 9b9b686fbacb..a93f127b8bf2 100644 --- a/drivers/ide/ide.c +++ b/drivers/ide/ide.c | |||
| @@ -202,7 +202,7 @@ static void __init init_ide_data (void) | |||
| 202 | for (index = 0; index < MAX_HWIFS; ++index) { | 202 | for (index = 0; index < MAX_HWIFS; ++index) { |
| 203 | ide_hwif_t *hwif = &ide_hwifs[index]; | 203 | ide_hwif_t *hwif = &ide_hwifs[index]; |
| 204 | unsigned long io_addr = ide_default_io_base(index); | 204 | unsigned long io_addr = ide_default_io_base(index); |
| 205 | unsigned long ctl_addr = ide_default_io_ctl(io_addr); | 205 | unsigned long ctl_addr = io_addr + 0x206; |
| 206 | 206 | ||
| 207 | ide_init_port_data(hwif, index); | 207 | ide_init_port_data(hwif, index); |
| 208 | 208 | ||
diff --git a/include/asm-alpha/ide.h b/include/asm-alpha/ide.h index a2feed30bb68..e67c38c96a6b 100644 --- a/include/asm-alpha/ide.h +++ b/include/asm-alpha/ide.h | |||
| @@ -37,8 +37,6 @@ static inline unsigned long ide_default_io_base(int index) | |||
| 37 | } | 37 | } |
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 41 | |||
| 42 | #ifdef CONFIG_PCI | 40 | #ifdef CONFIG_PCI |
| 43 | #define ide_init_default_irq(base) (0) | 41 | #define ide_init_default_irq(base) (0) |
| 44 | #else | 42 | #else |
diff --git a/include/asm-arm/ide.h b/include/asm-arm/ide.h index f348fcf3150b..88f4d231ce4f 100644 --- a/include/asm-arm/ide.h +++ b/include/asm-arm/ide.h | |||
| @@ -17,14 +17,6 @@ | |||
| 17 | #define MAX_HWIFS 4 | 17 | #define MAX_HWIFS 4 |
| 18 | #endif | 18 | #endif |
| 19 | 19 | ||
| 20 | #if !defined(CONFIG_ARCH_L7200) | ||
| 21 | # ifdef CONFIG_ARCH_CLPS7500 | ||
| 22 | # define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 23 | # else | ||
| 24 | # define ide_default_io_ctl(base) (0) | ||
| 25 | # endif | ||
| 26 | #endif /* !ARCH_L7200 */ | ||
| 27 | |||
| 28 | #define __ide_mm_insw(port,addr,len) readsw(port,addr,len) | 20 | #define __ide_mm_insw(port,addr,len) readsw(port,addr,len) |
| 29 | #define __ide_mm_insl(port,addr,len) readsl(port,addr,len) | 21 | #define __ide_mm_insl(port,addr,len) readsl(port,addr,len) |
| 30 | #define __ide_mm_outsw(port,addr,len) writesw(port,addr,len) | 22 | #define __ide_mm_outsw(port,addr,len) writesw(port,addr,len) |
diff --git a/include/asm-blackfin/ide.h b/include/asm-blackfin/ide.h index 121e272581d6..5b88de115bf4 100644 --- a/include/asm-blackfin/ide.h +++ b/include/asm-blackfin/ide.h | |||
| @@ -19,10 +19,6 @@ | |||
| 19 | 19 | ||
| 20 | #define MAX_HWIFS 1 | 20 | #define MAX_HWIFS 1 |
| 21 | 21 | ||
| 22 | /* Legacy ... BLK_DEV_IDECS */ | ||
| 23 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 24 | |||
| 25 | |||
| 26 | #include <asm-generic/ide_iops.h> | 22 | #include <asm-generic/ide_iops.h> |
| 27 | 23 | ||
| 28 | /****************************************************************************/ | 24 | /****************************************************************************/ |
diff --git a/include/asm-ia64/ide.h b/include/asm-ia64/ide.h index 09c2a05e1c8a..989edb6f1285 100644 --- a/include/asm-ia64/ide.h +++ b/include/asm-ia64/ide.h | |||
| @@ -44,8 +44,6 @@ static inline unsigned long ide_default_io_base(int index) | |||
| 44 | } | 44 | } |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 48 | |||
| 49 | #ifdef CONFIG_PCI | 47 | #ifdef CONFIG_PCI |
| 50 | #define ide_init_default_irq(base) (0) | 48 | #define ide_init_default_irq(base) (0) |
| 51 | #else | 49 | #else |
diff --git a/include/asm-m32r/ide.h b/include/asm-m32r/ide.h index feb7f0d7aca9..41bd33861ebe 100644 --- a/include/asm-m32r/ide.h +++ b/include/asm-m32r/ide.h | |||
| @@ -63,8 +63,6 @@ static __inline__ unsigned long ide_default_io_base(int index) | |||
| 63 | } | 63 | } |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 67 | |||
| 68 | #ifdef CONFIG_BLK_DEV_IDEPCI | 66 | #ifdef CONFIG_BLK_DEV_IDEPCI |
| 69 | #define ide_init_default_irq(base) (0) | 67 | #define ide_init_default_irq(base) (0) |
| 70 | #else | 68 | #else |
diff --git a/include/asm-mips/mach-generic/ide.h b/include/asm-mips/mach-generic/ide.h index 45e24474cf43..7a9093187fe9 100644 --- a/include/asm-mips/mach-generic/ide.h +++ b/include/asm-mips/mach-generic/ide.h | |||
| @@ -96,8 +96,6 @@ static __inline__ unsigned long ide_default_io_base(int index) | |||
| 96 | } | 96 | } |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 100 | |||
| 101 | #ifdef CONFIG_BLK_DEV_IDEPCI | 99 | #ifdef CONFIG_BLK_DEV_IDEPCI |
| 102 | #define ide_init_default_irq(base) (0) | 100 | #define ide_init_default_irq(base) (0) |
| 103 | #else | 101 | #else |
diff --git a/include/asm-parisc/ide.h b/include/asm-parisc/ide.h index be8760fbc8ee..db0c94410095 100644 --- a/include/asm-parisc/ide.h +++ b/include/asm-parisc/ide.h | |||
| @@ -17,8 +17,6 @@ | |||
| 17 | #define MAX_HWIFS 2 | 17 | #define MAX_HWIFS 2 |
| 18 | #endif | 18 | #endif |
| 19 | 19 | ||
| 20 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 21 | |||
| 22 | #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id)) | 20 | #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id)) |
| 23 | #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id)) | 21 | #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id)) |
| 24 | #define ide_request_region(from,extent,name) request_region((from), (extent), (name)) | 22 | #define ide_request_region(from,extent,name) request_region((from), (extent), (name)) |
diff --git a/include/asm-powerpc/ide.h b/include/asm-powerpc/ide.h index fef2ef1dbe86..17c51efff67c 100644 --- a/include/asm-powerpc/ide.h +++ b/include/asm-powerpc/ide.h | |||
| @@ -86,8 +86,6 @@ static __inline__ unsigned long ide_default_io_base(int index) | |||
| 86 | 86 | ||
| 87 | #endif /* __powerpc64__ */ | 87 | #endif /* __powerpc64__ */ |
| 88 | 88 | ||
| 89 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 90 | |||
| 91 | #endif /* __KERNEL__ */ | 89 | #endif /* __KERNEL__ */ |
| 92 | 90 | ||
| 93 | #endif /* _ASM_POWERPC_IDE_H */ | 91 | #endif /* _ASM_POWERPC_IDE_H */ |
diff --git a/include/asm-sh/ide.h b/include/asm-sh/ide.h index 9f8e9142dc33..58e0bdd52be4 100644 --- a/include/asm-sh/ide.h +++ b/include/asm-sh/ide.h | |||
| @@ -14,9 +14,6 @@ | |||
| 14 | 14 | ||
| 15 | #ifdef __KERNEL__ | 15 | #ifdef __KERNEL__ |
| 16 | 16 | ||
| 17 | |||
| 18 | #define ide_default_io_ctl(base) (0) | ||
| 19 | |||
| 20 | #include <asm-generic/ide_iops.h> | 17 | #include <asm-generic/ide_iops.h> |
| 21 | 18 | ||
| 22 | #endif /* __KERNEL__ */ | 19 | #endif /* __KERNEL__ */ |
diff --git a/include/asm-sparc/ide.h b/include/asm-sparc/ide.h index 4076cb5d1581..afd1736ed480 100644 --- a/include/asm-sparc/ide.h +++ b/include/asm-sparc/ide.h | |||
| @@ -17,8 +17,6 @@ | |||
| 17 | #undef MAX_HWIFS | 17 | #undef MAX_HWIFS |
| 18 | #define MAX_HWIFS 2 | 18 | #define MAX_HWIFS 2 |
| 19 | 19 | ||
| 20 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 21 | |||
| 22 | #define __ide_insl(data_reg, buffer, wcount) \ | 20 | #define __ide_insl(data_reg, buffer, wcount) \ |
| 23 | __ide_insw(data_reg, buffer, (wcount)<<1) | 21 | __ide_insw(data_reg, buffer, (wcount)<<1) |
| 24 | #define __ide_outsl(data_reg, buffer, wcount) \ | 22 | #define __ide_outsl(data_reg, buffer, wcount) \ |
diff --git a/include/asm-sparc64/ide.h b/include/asm-sparc64/ide.h index ac7eb210b941..c5fdabe0b42d 100644 --- a/include/asm-sparc64/ide.h +++ b/include/asm-sparc64/ide.h | |||
| @@ -24,8 +24,6 @@ | |||
| 24 | # endif | 24 | # endif |
| 25 | #endif | 25 | #endif |
| 26 | 26 | ||
| 27 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 28 | |||
| 29 | #define __ide_insl(data_reg, buffer, wcount) \ | 27 | #define __ide_insl(data_reg, buffer, wcount) \ |
| 30 | __ide_insw(data_reg, buffer, (wcount)<<1) | 28 | __ide_insw(data_reg, buffer, (wcount)<<1) |
| 31 | #define __ide_outsl(data_reg, buffer, wcount) \ | 29 | #define __ide_outsl(data_reg, buffer, wcount) \ |
diff --git a/include/asm-x86/ide.h b/include/asm-x86/ide.h index 58080a7111de..800edccd33f1 100644 --- a/include/asm-x86/ide.h +++ b/include/asm-x86/ide.h | |||
| @@ -58,8 +58,6 @@ static __inline__ unsigned long ide_default_io_base(int index) | |||
| 58 | } | 58 | } |
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | #define ide_default_io_ctl(base) ((base) + 0x206) /* obsolete */ | ||
| 62 | |||
| 63 | #ifdef CONFIG_BLK_DEV_IDEPCI | 61 | #ifdef CONFIG_BLK_DEV_IDEPCI |
| 64 | #define ide_init_default_irq(base) (0) | 62 | #define ide_init_default_irq(base) (0) |
| 65 | #else | 63 | #else |
