aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_legacy.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata/pata_legacy.c')
-rw-r--r--drivers/ata/pata_legacy.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/ata/pata_legacy.c b/drivers/ata/pata_legacy.c
index d960f8e9e8b1..e71fdfbf69b3 100644
--- a/drivers/ata/pata_legacy.c
+++ b/drivers/ata/pata_legacy.c
@@ -137,11 +137,17 @@ static int ht6560a; /* HT 6560A on primary 1, second 2, both 3 */
137static int ht6560b; /* HT 6560A on primary 1, second 2, both 3 */ 137static int ht6560b; /* HT 6560A on primary 1, second 2, both 3 */
138static int opti82c611a; /* Opti82c611A on primary 1, sec 2, both 3 */ 138static int opti82c611a; /* Opti82c611A on primary 1, sec 2, both 3 */
139static int opti82c46x; /* Opti 82c465MV present(pri/sec autodetect) */ 139static int opti82c46x; /* Opti 82c465MV present(pri/sec autodetect) */
140static int qdi; /* Set to probe QDI controllers */
141static int autospeed; /* Chip present which snoops speed changes */ 140static int autospeed; /* Chip present which snoops speed changes */
142static int pio_mask = ATA_PIO4; /* PIO range for autospeed devices */ 141static int pio_mask = ATA_PIO4; /* PIO range for autospeed devices */
143static int iordy_mask = 0xFFFFFFFF; /* Use iordy if available */ 142static int iordy_mask = 0xFFFFFFFF; /* Use iordy if available */
144 143
144/* Set to probe QDI controllers */
145#ifdef CONFIG_PATA_QDI_MODULE
146static int qdi = 1;
147#else
148static int qdi;
149#endif
150
145#ifdef CONFIG_PATA_WINBOND_VLB_MODULE 151#ifdef CONFIG_PATA_WINBOND_VLB_MODULE
146static int winbond = 1; /* Set to probe Winbond controllers, 152static int winbond = 1; /* Set to probe Winbond controllers,
147 give I/O port if non standard */ 153 give I/O port if non standard */
@@ -1306,6 +1312,7 @@ MODULE_AUTHOR("Alan Cox");
1306MODULE_DESCRIPTION("low-level driver for legacy ATA"); 1312MODULE_DESCRIPTION("low-level driver for legacy ATA");
1307MODULE_LICENSE("GPL"); 1313MODULE_LICENSE("GPL");
1308MODULE_VERSION(DRV_VERSION); 1314MODULE_VERSION(DRV_VERSION);
1315MODULE_ALIAS("pata_qdi");
1309MODULE_ALIAS("pata_winbond"); 1316MODULE_ALIAS("pata_winbond");
1310 1317
1311module_param(probe_all, int, 0); 1318module_param(probe_all, int, 0);