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

Commit 2fd9d74b authored by Brett M Russ's avatar Brett M Russ Committed by Linus Torvalds
Browse files

[PATCH] PCI: PCI/libata INTx bug fix



Previous INTx cleanup patch had a bug that was not caught.  I found
this last night during testing and can confirm that it is now 100%
working.

Signed-off-by: default avatarBrett Russ <russb@emc.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Acked-by: default avatarJeff Garzik <jgarzik@pobox.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ddcc9596
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -819,7 +819,7 @@ pci_intx(struct pci_dev *pdev, int enable)
	}

	if (new != pci_command) {
		pci_write_config_word(pdev, PCI_COMMAND, pci_command);
		pci_write_config_word(pdev, PCI_COMMAND, new);
	}
}