Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191519
b: refs/heads/master
c: eddb0c5
h: refs/heads/master
i:
  191517: d4592a5
  191515: b69d0f2
  191511: 3a1d902
  191503: 959c5a3
  191487: 07350f1
v: v3
  • Loading branch information
Eric W. Biederman authored and H. Peter Anvin committed May 4, 2010
1 parent 05747f0 commit 759113a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4b6b19a1c7302477653d799a53d48063dd53d555
refs/heads/master: eddb0c55a14074d6bac8c2ef169aefd7e2c6f139
10 changes: 5 additions & 5 deletions trunk/arch/x86/include/asm/io_apic.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ extern void ioapic_write_entry(int apic, int pin,
extern void setup_ioapic_ids_from_mpc(void);

struct mp_ioapic_gsi{
int gsi_base;
int gsi_end;
u32 gsi_base;
u32 gsi_end;
};
extern struct mp_ioapic_gsi mp_gsi_routing[];
int mp_find_ioapic(int gsi);
int mp_find_ioapic_pin(int ioapic, int gsi);
int mp_find_ioapic(u32 gsi);
int mp_find_ioapic_pin(int ioapic, u32 gsi);
void __init mp_register_ioapic(int id, u32 address, u32 gsi_base);
extern void __init pre_init_apic_IRQ0(void);

Expand All @@ -197,7 +197,7 @@ static const int timer_through_8259 = 0;
static inline void ioapic_init_mappings(void) { }
static inline void ioapic_insert_resources(void) { }
static inline void probe_nr_irqs_gsi(void) { }
static inline int mp_find_ioapic(int gsi) { return 0; }
static inline int mp_find_ioapic(u32 gsi) { return 0; }

struct io_apic_irq_attr;
static inline int io_apic_set_pci_routing(struct device *dev, int irq,
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/x86/kernel/apic/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -4247,7 +4247,7 @@ void __init ioapic_insert_resources(void)
}
}

int mp_find_ioapic(int gsi)
int mp_find_ioapic(u32 gsi)
{
int i = 0;

Expand All @@ -4262,7 +4262,7 @@ int mp_find_ioapic(int gsi)
return -1;
}

int mp_find_ioapic_pin(int ioapic, int gsi)
int mp_find_ioapic_pin(int ioapic, u32 gsi)
{
if (WARN_ON(ioapic == -1))
return -1;
Expand Down

0 comments on commit 759113a

Please sign in to comment.