Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 80295
b: refs/heads/master
c: c11b68b
h: refs/heads/master
i:
  80293: c8c1f1b
  80291: f1ec690
  80287: a67a748
v: v3
  • Loading branch information
Alan Cox authored and Ingo Molnar committed Jan 30, 2008
1 parent a24172c commit ad6fe34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 466eed22d127a1f16e1251cdc54a9f8f944140c0
refs/heads/master: c11b68bc8b1f7c7daaea2220e0a8d9f7d391cb8d
6 changes: 3 additions & 3 deletions trunk/arch/x86/pci/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
outb_p(pirq, 0xc00);
outb(pirq, 0xc00);
return inb(0xc01) & 0xf;
}

static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
{
outb_p(pirq, 0xc00);
outb_p(irq, 0xc01);
outb(pirq, 0xc00);
outb(irq, 0xc01);
return 1;
}

Expand Down

0 comments on commit ad6fe34

Please sign in to comment.