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

Commit 425afb61 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide: fix ide_intr() for non-PCI devices and CONFIG_BLK_DEV_IDEPCI=y



'hwif->pci_dev && !hwif->pci_dev->vendor' condition is never true,
check for 'hwif->chipset != ide_pci' instead.

Acked-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 2be564b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1487,7 +1487,7 @@ irqreturn_t ide_intr (int irq, void *dev_id)
		 * remove all the ifdef PCI crap
		 * remove all the ifdef PCI crap
		 */
		 */
#ifdef CONFIG_BLK_DEV_IDEPCI
#ifdef CONFIG_BLK_DEV_IDEPCI
		if (hwif->pci_dev && !hwif->pci_dev->vendor)
		if (hwif->chipset != ide_pci)
#endif	/* CONFIG_BLK_DEV_IDEPCI */
#endif	/* CONFIG_BLK_DEV_IDEPCI */
		{
		{
			/*
			/*