diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:33 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-17 18:46:33 -0400 |
commit | 0e33555fffdc8490630d98070e76e5fe031bcac2 (patch) | |
tree | 74ef5a7427db1deef3994a0342767bf0b4ffafe1 /drivers/ide/ide.c | |
parent | 359c2e2d2039029a8167fb00499296b228928024 (diff) |
ide: add CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS (take 2)
* 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>
Diffstat (limited to 'drivers/ide/ide.c')
-rw-r--r-- | drivers/ide/ide.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c index c2fb5c964a51..a1a02c74d77f 100644 --- a/drivers/ide/ide.c +++ b/drivers/ide/ide.c | |||
@@ -165,6 +165,10 @@ static void ide_port_init_devices_data(ide_hwif_t *hwif) | |||
165 | } | 165 | } |
166 | } | 166 | } |
167 | 167 | ||
168 | #ifndef CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS | ||
169 | # define ide_default_io_base(index) (0) | ||
170 | # define ide_init_default_irq(base) (0) | ||
171 | #endif | ||
168 | 172 | ||
169 | /* | 173 | /* |
170 | * init_ide_data() sets reasonable default values into all fields | 174 | * init_ide_data() sets reasonable default values into all fields |