Skip to content

Commit

Permalink
[PATCH] PCI: PCI/libata INTx bug fix
Browse files Browse the repository at this point in the history
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: Brett Russ <russb@emc.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Acked-by: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Brett M Russ authored and Linus Torvalds committed Sep 9, 2005
1 parent ddcc959 commit 2fd9d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 2fd9d74

Please sign in to comment.