diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-18 18:30:11 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-18 18:30:11 -0400 |
commit | 3985ee3b4c5f9e1d73623b92715375b089c54353 (patch) | |
tree | 13741edc5575b3ebb436f94b04e338b3b0701e9f /include/linux | |
parent | 1c51361a9867021dd7444b56d87834003d4ca67d (diff) |
ide: add IDE_HFLAG_LEGACY_IRQS host flag
Add IDE_HFLAG_LEGACY_IRQS host flag to tell ide_pci_setup_ports() to set
hwif->irq to legacy IRQ 14/15 (iff hwif->irq is not already set) and convert
atiixp, piix, serverworks, sis5513 and slc90e66 host drivers to use it.
While at it:
* In piix.c add IDE_HFLAGS_PIIX define and don't use ->init_hwif for MPIIX.
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ide.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 659b60abc259..19db0a4ae447 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -1259,6 +1259,8 @@ enum { | |||
1259 | IDE_HFLAG_ERROR_STOPS_FIFO = (1 << 19), | 1259 | IDE_HFLAG_ERROR_STOPS_FIFO = (1 << 19), |
1260 | /* serialize ports */ | 1260 | /* serialize ports */ |
1261 | IDE_HFLAG_SERIALIZE = (1 << 20), | 1261 | IDE_HFLAG_SERIALIZE = (1 << 20), |
1262 | /* use legacy IRQs */ | ||
1263 | IDE_HFLAG_LEGACY_IRQS = (1 << 21), | ||
1262 | }; | 1264 | }; |
1263 | 1265 | ||
1264 | #ifdef CONFIG_BLK_DEV_OFFBOARD | 1266 | #ifdef CONFIG_BLK_DEV_OFFBOARD |