diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-02-22 19:25:18 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-22 19:25:18 -0500 |
commit | 54b56170e4517e9606b245c3f805fc96baa059f0 (patch) | |
tree | 9f8750ef972b4a7fdce530889dcbaf2a8b5b0d05 /arch/x86/kernel/visws_quirks.c | |
parent | 1f91233c26fd5f7d6525fd29b95e4b50ca7a3e88 (diff) | |
parent | d02e30c31c57683a66ed68a1bcff900ca78f6d56 (diff) |
Merge remote branch 'origin/x86/apic' into x86/mrst
Conflicts:
arch/x86/kernel/apic/io_apic.c
Diffstat (limited to 'arch/x86/kernel/visws_quirks.c')
-rw-r--r-- | arch/x86/kernel/visws_quirks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/visws_quirks.c b/arch/x86/kernel/visws_quirks.c index f067e9556a47..e680ea52db9b 100644 --- a/arch/x86/kernel/visws_quirks.c +++ b/arch/x86/kernel/visws_quirks.c | |||
@@ -553,7 +553,7 @@ static irqreturn_t piix4_master_intr(int irq, void *dev_id) | |||
553 | struct irq_desc *desc; | 553 | struct irq_desc *desc; |
554 | unsigned long flags; | 554 | unsigned long flags; |
555 | 555 | ||
556 | spin_lock_irqsave(&i8259A_lock, flags); | 556 | raw_spin_lock_irqsave(&i8259A_lock, flags); |
557 | 557 | ||
558 | /* Find out what's interrupting in the PIIX4 master 8259 */ | 558 | /* Find out what's interrupting in the PIIX4 master 8259 */ |
559 | outb(0x0c, 0x20); /* OCW3 Poll command */ | 559 | outb(0x0c, 0x20); /* OCW3 Poll command */ |
@@ -590,7 +590,7 @@ static irqreturn_t piix4_master_intr(int irq, void *dev_id) | |||
590 | outb(0x60 + realirq, 0x20); | 590 | outb(0x60 + realirq, 0x20); |
591 | } | 591 | } |
592 | 592 | ||
593 | spin_unlock_irqrestore(&i8259A_lock, flags); | 593 | raw_spin_unlock_irqrestore(&i8259A_lock, flags); |
594 | 594 | ||
595 | desc = irq_to_desc(realirq); | 595 | desc = irq_to_desc(realirq); |
596 | 596 | ||
@@ -608,7 +608,7 @@ static irqreturn_t piix4_master_intr(int irq, void *dev_id) | |||
608 | return IRQ_HANDLED; | 608 | return IRQ_HANDLED; |
609 | 609 | ||
610 | out_unlock: | 610 | out_unlock: |
611 | spin_unlock_irqrestore(&i8259A_lock, flags); | 611 | raw_spin_unlock_irqrestore(&i8259A_lock, flags); |
612 | return IRQ_NONE; | 612 | return IRQ_NONE; |
613 | } | 613 | } |
614 | 614 | ||