Commit 6878cce5 authored by Samuel Thibault's avatar Samuel Thibault Committed by Jeff Garzik

Fix pata_qdi.c probe code

There is a small typo in the probe code of pata_qdi.c, here is a patch.
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 0397bad5
......@@ -375,7 +375,7 @@ static __init int qdi_init(void)
res = inb(port + 3);
if (res & 1) {
/* Single channel mode */
if (qdi_init_one(port, 6580, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04))
if (qdi_init_one(port, 6580, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04) == 0)
ct++;
} else {
/* Dual channel mode */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment