Skip to content
Snippets Groups Projects
Commit c11b68bc authored by Alan Cox's avatar Alan Cox Committed by Ingo Molnar
Browse files

x86: serverworks: IRQ routing needs no _p


I can find no reason for the _p on the serverworks IRQ routing logic, and
a review of the documentation contains no indication that any such delay
is needed so lets try this

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 466eed22
No related merge requests found
...@@ -461,14 +461,14 @@ static int pirq_vlsi_set(struct pci_dev *router, struct pci_dev *dev, int pirq, ...@@ -461,14 +461,14 @@ static int pirq_vlsi_set(struct pci_dev *router, struct pci_dev *dev, int pirq,
*/ */
static int pirq_serverworks_get(struct pci_dev *router, struct pci_dev *dev, int pirq) static int pirq_serverworks_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
{ {
outb_p(pirq, 0xc00); outb(pirq, 0xc00);
return inb(0xc01) & 0xf; return inb(0xc01) & 0xf;
} }
static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
{ {
outb_p(pirq, 0xc00); outb(pirq, 0xc00);
outb_p(irq, 0xc01); outb(irq, 0xc01);
return 1; return 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment