aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/ide.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 14a87f619d17..9f72f6e0c954 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -681,6 +681,8 @@ typedef struct hwif_s {
681 u8 straight8; /* Alan's straight 8 check */ 681 u8 straight8; /* Alan's straight 8 check */
682 u8 bus_state; /* power state of the IDE bus */ 682 u8 bus_state; /* power state of the IDE bus */
683 683
684 u8 host_flags;
685
684 u8 atapi_dma; /* host supports atapi_dma */ 686 u8 atapi_dma; /* host supports atapi_dma */
685 u8 ultra_mask; 687 u8 ultra_mask;
686 u8 mwdma_mask; 688 u8 mwdma_mask;
@@ -1245,7 +1247,12 @@ typedef struct ide_pci_enablebit_s {
1245enum { 1247enum {
1246 /* Uses ISA control ports not PCI ones. */ 1248 /* Uses ISA control ports not PCI ones. */
1247 IDE_HFLAG_ISA_PORTS = (1 << 0), 1249 IDE_HFLAG_ISA_PORTS = (1 << 0),
1250 /* single port device */
1248 IDE_HFLAG_SINGLE = (1 << 1), 1251 IDE_HFLAG_SINGLE = (1 << 1),
1252 /* don't use legacy PIO blacklist */
1253 IDE_HFLAG_PIO_NO_BLACKLIST = (1 << 2),
1254 /* don't use conservative PIO "downgrade" */
1255 IDE_HFLAG_PIO_NO_DOWNGRADE = (1 << 3),
1249}; 1256};
1250 1257
1251typedef struct ide_pci_device_s { 1258typedef struct ide_pci_device_s {