aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/ide-probe.c')
-rw-r--r--drivers/ide/ide-probe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c
index f81793f3f247..875429728021 100644
--- a/drivers/ide/ide-probe.c
+++ b/drivers/ide/ide-probe.c
@@ -1468,7 +1468,9 @@ ide_hwif_t *ide_find_port_slot(const struct ide_port_info *d)
1468 * ports 0x1f0/0x170 (the ide0/ide1 defaults). 1468 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1469 */ 1469 */
1470 if (bootable) { 1470 if (bootable) {
1471 for (i = 0; i < MAX_HWIFS; i++) { 1471 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;
1472
1473 for (; i < MAX_HWIFS; i++) {
1472 hwif = &ide_hwifs[i]; 1474 hwif = &ide_hwifs[i];
1473 if (hwif->chipset == ide_unknown) 1475 if (hwif->chipset == ide_unknown)
1474 return hwif; 1476 return hwif;