]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ide: add CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS (take 2)
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Thu, 17 Apr 2008 22:46:33 +0000 (00:46 +0200)
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Thu, 17 Apr 2008 22:46:33 +0000 (00:46 +0200)
* Add CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS to drivers/ide/Kconfig and use
  it instead of defining IDE_ARCH_OBSOLETE_DEFAULTS in <arch/ide.h>.

v2:
* Define ide_default_irq() in ide-probe.c/ns87415.c if not already defined
  and drop defining ide_default_irq() for CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS=n.

  [ Thanks to Stephen Rothwell and David Miller for noticing the problem. ]

Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
drivers/ide/Kconfig
drivers/ide/ide-probe.c
drivers/ide/ide.c
drivers/ide/pci/ns87415.c
include/asm-alpha/ide.h
include/asm-ia64/ide.h
include/asm-m32r/ide.h
include/asm-mips/mach-generic/ide.h
include/asm-powerpc/ide.h
include/asm-x86/ide.h
include/linux/ide.h

index 4dc2761e9704ea4229872a3c78ebee3d588822e7..a57893c03b7ac1df65a919a8b544998ce453543d 100644 (file)
@@ -1092,6 +1092,9 @@ config BLK_DEV_IDEDMA
 config IDE_ARCH_OBSOLETE_INIT
        def_bool ALPHA || (ARM && !ARCH_L7200) || BLACKFIN || X86 || IA64 || M32R || MIPS || PARISC || PPC || (SUPERH64 && BLK_DEV_IDEPCI) || SPARC
 
+config IDE_ARCH_OBSOLETE_DEFAULTS
+       def_bool ALPHA || X86 || IA64 || M32R || MIPS || PPC32
+
 endif
 
 config BLK_DEV_HD_ONLY
index 10ccf278d5be58a86c0a54116f5f41db6bc06ed8..6a196c27b0aa016ad044a78db16bebdedbfb51e0 100644 (file)
@@ -1233,6 +1233,10 @@ static void drive_release_dev (struct device *dev)
        complete(&drive->gendev_rel_comp);
 }
 
+#ifndef ide_default_irq
+#define ide_default_irq(irq) 0
+#endif
+
 static int hwif_init(ide_hwif_t *hwif)
 {
        int old_irq;
index c2fb5c964a518cf4b4d52c4a5aaed6a5c2e8ba72..a1a02c74d77f6bdd78b28fda47f6dcece82ed9fd 100644 (file)
@@ -165,6 +165,10 @@ static void ide_port_init_devices_data(ide_hwif_t *hwif)
        }
 }
 
+#ifndef CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS
+# define ide_default_io_base(index)    (0)
+# define ide_init_default_irq(base)    (0)
+#endif
 
 /*
  * init_ide_data() sets reasonable default values into all fields
index bf0d3b2931f1c3202259fa40c444642cb93f07c6..75513320aad9277fc3dc14cc3b5d2bbf7c96e0c2 100644 (file)
@@ -181,6 +181,10 @@ static int ns87415_ide_dma_setup(ide_drive_t *drive)
        return 1;
 }
 
+#ifndef ide_default_irq
+#define ide_default_irq(irq) 0
+#endif
+
 static void __devinit init_hwif_ns87415 (ide_hwif_t *hwif)
 {
        struct pci_dev *dev = to_pci_dev(hwif->dev);
index b7bf68d0407bed6367f5f7f848768681fd7d6357..a2feed30bb68b58b2e2c9308fecf2d31767d1f8f 100644 (file)
@@ -13,9 +13,6 @@
 
 #ifdef __KERNEL__
 
-
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 static inline int ide_default_irq(unsigned long base)
 {
        switch (base) {
index 1ccf23809329e28b15be6c5967e697ef2b75014b..09c2a05e1c8a6b117cdf4bca1774fb76c2ff3621 100644 (file)
@@ -16,8 +16,6 @@
 
 #include <linux/irq.h>
 
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 static inline int ide_default_irq(unsigned long base)
 {
        switch (base) {
index 5d2044e529abc0e562a8eee0338e70c06834eed8..feb7f0d7aca92ee6733e31683891c9b5041203b5 100644 (file)
@@ -23,8 +23,6 @@
 # endif
 #endif
 
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 static __inline__ int ide_default_irq(unsigned long base)
 {
        switch (base) {
index 4ec2b930dfbb3ec565abe1978a4f896ccaeea6e7..45e24474cf43ca340d51acdeb206db86f9ce0d50 100644 (file)
@@ -27,8 +27,6 @@
 # endif
 #endif
 
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 static __inline__ int ide_probe_legacy(void)
 {
 #ifdef CONFIG_PCI
index 06549456c95321432dc9adcd351516600658abab..fef2ef1dbe867f152c3fcc68290f4c4d0c5ed0b4 100644 (file)
@@ -31,8 +31,6 @@
 #include <linux/hdreg.h>
 #include <linux/ioport.h>
 
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 /* FIXME: use ide_platform host driver */
 static __inline__ int ide_default_irq(unsigned long base)
 {
index c2552d8bebf7b78abadef71fdcc92836228f472b..58080a7111dec8f285d02af56a2f4517fd91033a 100644 (file)
@@ -20,8 +20,6 @@
 # endif
 #endif
 
-#define IDE_ARCH_OBSOLETE_DEFAULTS
-
 static __inline__ int ide_default_irq(unsigned long base)
 {
        switch (base) {
index 65445b7efc630a3c8c3c0dbfcd61f3de741eea0a..6c39482fd1a10e7eb4a7a74c17c3e29a000bfd66 100644 (file)
@@ -194,13 +194,6 @@ static inline void ide_std_init_ports(hw_regs_t *hw,
 #define MAX_HWIFS      CONFIG_IDE_MAX_HWIFS
 #endif
 
-/* needed on alpha, x86/x86_64, ia64, mips, ppc32 and sh */
-#ifndef IDE_ARCH_OBSOLETE_DEFAULTS
-# define ide_default_io_base(index)    (0)
-# define ide_default_irq(base)         (0)
-# define ide_init_default_irq(base)    (0)
-#endif
-
 /* Currently only m68k, apus and m8xx need it */
 #ifndef IDE_ARCH_ACK_INTR
 # define ide_ack_intr(hwif) (1)