aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2010-03-30 04:07:09 -0400
committerH. Peter Anvin <hpa@zytor.com>2010-05-04 16:34:52 -0400
commiteddb0c55a14074d6bac8c2ef169aefd7e2c6f139 (patch)
treeaf2b386d675df717647602f5e6ce7bb5ed4f992b /arch
parent4b6b19a1c7302477653d799a53d48063dd53d555 (diff)
x86, ioapic: Fix the types of gsi values
This patches fixes the types of gsi_base and gsi_end values in struct mp_ioapic_gsi, and the gsi parameter of mp_find_ioapic and mp_find_ioapic_pin A gsi is cannonically a u32, not an int. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> LKML-Reference: <1269936436-7039-8-git-send-email-ebiederm@xmission.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/io_apic.h10
-rw-r--r--arch/x86/kernel/apic/io_apic.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h
index 35832a03a515..feeaf0d92460 100644
--- a/arch/x86/include/asm/io_apic.h
+++ b/arch/x86/include/asm/io_apic.h
@@ -180,12 +180,12 @@ extern void ioapic_write_entry(int apic, int pin,
180extern void setup_ioapic_ids_from_mpc(void); 180extern void setup_ioapic_ids_from_mpc(void);
181 181
182struct mp_ioapic_gsi{ 182struct mp_ioapic_gsi{
183 int gsi_base; 183 u32 gsi_base;
184 int gsi_end; 184 u32 gsi_end;
185}; 185};
186extern struct mp_ioapic_gsi mp_gsi_routing[]; 186extern struct mp_ioapic_gsi mp_gsi_routing[];
187int mp_find_ioapic(int gsi); 187int mp_find_ioapic(u32 gsi);
188int mp_find_ioapic_pin(int ioapic, int gsi); 188int mp_find_ioapic_pin(int ioapic, u32 gsi);
189void __init mp_register_ioapic(int id, u32 address, u32 gsi_base); 189void __init mp_register_ioapic(int id, u32 address, u32 gsi_base);
190extern void __init pre_init_apic_IRQ0(void); 190extern void __init pre_init_apic_IRQ0(void);
191 191
@@ -197,7 +197,7 @@ static const int timer_through_8259 = 0;
197static inline void ioapic_init_mappings(void) { } 197static inline void ioapic_init_mappings(void) { }
198static inline void ioapic_insert_resources(void) { } 198static inline void ioapic_insert_resources(void) { }
199static inline void probe_nr_irqs_gsi(void) { } 199static inline void probe_nr_irqs_gsi(void) { }
200static inline int mp_find_ioapic(int gsi) { return 0; } 200static inline int mp_find_ioapic(u32 gsi) { return 0; }
201 201
202struct io_apic_irq_attr; 202struct io_apic_irq_attr;
203static inline int io_apic_set_pci_routing(struct device *dev, int irq, 203static inline int io_apic_set_pci_routing(struct device *dev, int irq,
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 0a053e61b3ea..9ab97622b8e6 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -4247,7 +4247,7 @@ void __init ioapic_insert_resources(void)
4247 } 4247 }
4248} 4248}
4249 4249
4250int mp_find_ioapic(int gsi) 4250int mp_find_ioapic(u32 gsi)
4251{ 4251{
4252 int i = 0; 4252 int i = 0;
4253 4253
@@ -4262,7 +4262,7 @@ int mp_find_ioapic(int gsi)
4262 return -1; 4262 return -1;
4263} 4263}
4264 4264
4265int mp_find_ioapic_pin(int ioapic, int gsi) 4265int mp_find_ioapic_pin(int ioapic, u32 gsi)
4266{ 4266{
4267 if (WARN_ON(ioapic == -1)) 4267 if (WARN_ON(ioapic == -1))
4268 return -1; 4268 return -1;