diff options
Diffstat (limited to 'include/asm-arm/arch-rpc/ide.h')
-rw-r--r-- | include/asm-arm/arch-rpc/ide.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asm-arm/arch-rpc/ide.h b/include/asm-arm/arch-rpc/ide.h index 49463bae0..311a98853 100644 --- a/include/asm-arm/arch-rpc/ide.h +++ b/include/asm-arm/arch-rpc/ide.h @@ -3,12 +3,13 @@ * * Copyright (c) 1997 Russell King */ +#include <asm/irq.h> static __inline__ int ide_default_irq(ide_ioreg_t base) { if (base == 0x1f0) - return 9; + return IRQ_HARDDISK; return 0; } @@ -40,5 +41,5 @@ ide_init_hwif_ports (ide_ioreg_t *p, ide_ioreg_t base, int stepping, int *irq) } *p++ = ctrl; if (irq != NULL) - irq = 0; + *irq = 0; } |