Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f693be4d authored by Sergei Shtylyov's avatar Sergei Shtylyov Committed by David S. Miller
Browse files

pdc202xx_old: ignore "FIFO empty" bit in test_irq() method



The driver takes into account not only the interrupt status bit but
also "FIFO empty" bit in its test_irq() method. This actually is a
superfluous check since for the DMA commands calling the
dma_test_irq() method further in the interrupt handler makes sure FIFO
is emptied.

Signed-off-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 63e7cf91
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -93,13 +93,13 @@ static int pdc202xx_test_irq(ide_hwif_t *hwif)
		 * bit 7: error, bit 6: interrupting,
		 * bit 7: error, bit 6: interrupting,
		 * bit 5: FIFO full, bit 4: FIFO empty
		 * bit 5: FIFO full, bit 4: FIFO empty
		 */
		 */
		return ((sc1d & 0x50) == 0x50) ? 1 : 0;
		return (sc1d & 0x40) ? 1 : 0;
	} else	{
	} else	{
		/*
		/*
		 * bit 3: error, bit 2: interrupting,
		 * bit 3: error, bit 2: interrupting,
		 * bit 1: FIFO full, bit 0: FIFO empty
		 * bit 1: FIFO full, bit 0: FIFO empty
		 */
		 */
		return ((sc1d & 0x05) == 0x05) ? 1 : 0;
		return (sc1d & 0x04) ? 1 : 0;
	}
	}
}
}