aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/i8259.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-02-12 10:48:55 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-02-12 10:48:55 +0000
commit413de29298163207c7c06f32cd6d334bb4e59c0b (patch)
treec71a5b3584d0c7d807817a3a782426126aa8959c /xen/arch/x86/i8259.c
parentf80bfa336f1f53323efc7e7962d7db185fcf5e10 (diff)
downloadxen-413de29298163207c7c06f32cd6d334bb4e59c0b.tar.gz
xen-413de29298163207c7c06f32cd6d334bb4e59c0b.tar.bz2
xen-413de29298163207c7c06f32cd6d334bb4e59c0b.zip
Cleanup naming for ia64 and x86 interrupt handling functions
- Append '_IRQ' to AUTO_ASSIGN, NEVER_ASSIGN, and FREE_TO_ASSIGN - Rename {request,setup}_irq to {request,setup}_irq_vector - Rename free_irq to release_irq_vector - Add {request,setup,release}_irq wrappers for their {request,setup,release}_irq_vector counterparts - Added generic irq_to_vector inline for ia64 - Changed ia64 to use the new naming scheme Signed-off-by: Espen Skoglund <espen.skoglund@netronome.com> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'xen/arch/x86/i8259.c')
-rw-r--r--xen/arch/x86/i8259.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/arch/x86/i8259.c b/xen/arch/x86/i8259.c
index f945f5df64..29cd86ee3a 100644
--- a/xen/arch/x86/i8259.c
+++ b/xen/arch/x86/i8259.c
@@ -410,8 +410,8 @@ void __init init_IRQ(void)
}
/* Never allocate the hypercall vector or Linux/BSD fast-trap vector. */
- vector_irq[HYPERCALL_VECTOR] = NEVER_ASSIGN;
- vector_irq[0x80] = NEVER_ASSIGN;
+ vector_irq[HYPERCALL_VECTOR] = NEVER_ASSIGN_IRQ;
+ vector_irq[0x80] = NEVER_ASSIGN_IRQ;
apic_intr_init();