From ad6fe34617f3a3f31dc6b972b8adc3d843acd769 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 30 Jan 2008 13:33:14 +0100 Subject: [PATCH] --- yaml --- r: 80295 b: refs/heads/master c: c11b68bc8b1f7c7daaea2220e0a8d9f7d391cb8d h: refs/heads/master i: 80293: c8c1f1b64e8484ee832b9f8d12bc7d2a60280aea 80291: f1ec690d8a6dae5954104e2bd30ac0c5d82f4576 80287: a67a748f867baecabb907bf8494a1666f9d5a6c9 v: v3 --- [refs] | 2 +- trunk/arch/x86/pci/irq.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index ef867b22d9a3..0fc33e405d66 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 466eed22d127a1f16e1251cdc54a9f8f944140c0 +refs/heads/master: c11b68bc8b1f7c7daaea2220e0a8d9f7d391cb8d diff --git a/trunk/arch/x86/pci/irq.c b/trunk/arch/x86/pci/irq.c index ee524ca5f8c0..ed07ce6c171b 100644 --- a/trunk/arch/x86/pci/irq.c +++ b/trunk/arch/x86/pci/irq.c @@ -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; }