diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 11:18:34 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 11:18:34 -0400 |
| commit | 5a96c5d0c58ead9a0ece03ffe1c116dea6dafe9c (patch) | |
| tree | 17199c2c536f25a2b34e37045e9f7619a2dcbb3d /drivers/parisc/iosapic.c | |
| parent | 13bbd8d90647132fc295d73b122567eb8987d298 (diff) | |
| parent | 5f024a251f0b3b179bbc8fc62f3a650e49359db5 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/willy/parisc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/willy/parisc-2.6: (41 commits)
[PARISC] Kill wall_jiffies use
[PARISC] Honour "panic_on_oops" sysctl
[PARISC] Fix fs/binfmt_som.c
[PARISC] Export clear_user_page to modules
[PARISC] Make DMA routines more stubby
[PARISC] Define pci_get_legacy_ide_irq
[PARISC] Fix CONFIG_DEBUG_SPINLOCK
[PARISC] Fix HPUX compat compile with current GCC
[PARISC] Fix iounmap compile warning
[PARISC] Add support for Quicksilver AGPGART
[PARISC] Move LBA and SBA register defines to the common ropes.h
[PARISC] Create shared <asm/ropes.h> header
[PARISC] Stash the lba_device in its struct device drvdata
[PARISC] Generalize IS_ASTRO et al to take a parisc_device like
[PARISC] Pretty print the name of the lba type on kernel boot
[PARISC] Remove some obsolete comments and I checked that Reo is similar to Ike
[PARISC] Add hardware found in the rp8400
[PARISC] Allow nested interrupts
[PARISC] Further updates to timer_interrupt()
[PARISC] remove halftick and copy clocktick to local var (gcc can optimize usage)
...
Diffstat (limited to 'drivers/parisc/iosapic.c')
| -rw-r--r-- | drivers/parisc/iosapic.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c index 1fbda77cefc2..c2949b4367e5 100644 --- a/drivers/parisc/iosapic.c +++ b/drivers/parisc/iosapic.c | |||
| @@ -146,7 +146,7 @@ | |||
| 146 | #include <asm/superio.h> | 146 | #include <asm/superio.h> |
| 147 | #endif | 147 | #endif |
| 148 | 148 | ||
| 149 | #include <asm/iosapic.h> | 149 | #include <asm/ropes.h> |
| 150 | #include "./iosapic_private.h" | 150 | #include "./iosapic_private.h" |
| 151 | 151 | ||
| 152 | #define MODULE_NAME "iosapic" | 152 | #define MODULE_NAME "iosapic" |
| @@ -692,6 +692,7 @@ static void iosapic_end_irq(unsigned int irq) | |||
| 692 | DBG(KERN_DEBUG "end_irq(%d): eoi(%p, 0x%x)\n", irq, | 692 | DBG(KERN_DEBUG "end_irq(%d): eoi(%p, 0x%x)\n", irq, |
| 693 | vi->eoi_addr, vi->eoi_data); | 693 | vi->eoi_addr, vi->eoi_data); |
| 694 | iosapic_eoi(vi->eoi_addr, vi->eoi_data); | 694 | iosapic_eoi(vi->eoi_addr, vi->eoi_data); |
| 695 | cpu_end_irq(irq); | ||
| 695 | } | 696 | } |
| 696 | 697 | ||
| 697 | static unsigned int iosapic_startup_irq(unsigned int irq) | 698 | static unsigned int iosapic_startup_irq(unsigned int irq) |
| @@ -728,7 +729,7 @@ static struct hw_interrupt_type iosapic_interrupt_type = { | |||
| 728 | .shutdown = iosapic_disable_irq, | 729 | .shutdown = iosapic_disable_irq, |
| 729 | .enable = iosapic_enable_irq, | 730 | .enable = iosapic_enable_irq, |
| 730 | .disable = iosapic_disable_irq, | 731 | .disable = iosapic_disable_irq, |
| 731 | .ack = no_ack_irq, | 732 | .ack = cpu_ack_irq, |
| 732 | .end = iosapic_end_irq, | 733 | .end = iosapic_end_irq, |
| 733 | #ifdef CONFIG_SMP | 734 | #ifdef CONFIG_SMP |
| 734 | .set_affinity = iosapic_set_affinity_irq, | 735 | .set_affinity = iosapic_set_affinity_irq, |
