diff options
| author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-01-08 17:01:34 -0500 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-01-08 17:01:34 -0500 |
| commit | be680c716c465a173c1c783185e3d023899742fc (patch) | |
| tree | e04bb2d4e4853aa5a45e4c2a9963e501f65a7b52 | |
| parent | d8f2f1808aa4a38e841cad59db0e5d1ec3a1b014 (diff) | |
| parent | 0dc6c490c0e2b81af32db3851040c109f7b3a54b (diff) | |
Merge branch 'next-footbridge' of git://aeryn.fluff.org.uk/bjdooks/linux
| -rw-r--r-- | arch/arm/kernel/isa.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-footbridge/common.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-footbridge/common.h | 1 | ||||
| -rw-r--r-- | arch/arm/mach-footbridge/dc21285.c | 23 | ||||
| -rw-r--r-- | arch/arm/mach-footbridge/isa-irq.c | 2 |
5 files changed, 17 insertions, 12 deletions
diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c index 50a30bc91872..8ac9b8424007 100644 --- a/arch/arm/kernel/isa.c +++ b/arch/arm/kernel/isa.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/fs.h> | 16 | #include <linux/fs.h> |
| 17 | #include <linux/sysctl.h> | 17 | #include <linux/sysctl.h> |
| 18 | #include <linux/init.h> | 18 | #include <linux/init.h> |
| 19 | #include <linux/io.h> | ||
| 19 | 20 | ||
| 20 | static unsigned int isa_membase, isa_portbase, isa_portshift; | 21 | static unsigned int isa_membase, isa_portbase, isa_portshift; |
| 21 | 22 | ||
diff --git a/arch/arm/mach-footbridge/common.c b/arch/arm/mach-footbridge/common.c index 36ff06d4df15..aad270b76311 100644 --- a/arch/arm/mach-footbridge/common.c +++ b/arch/arm/mach-footbridge/common.c | |||
| @@ -28,8 +28,6 @@ | |||
| 28 | 28 | ||
| 29 | #include "common.h" | 29 | #include "common.h" |
| 30 | 30 | ||
| 31 | extern void __init isa_init_irq(unsigned int irq); | ||
| 32 | |||
| 33 | unsigned int mem_fclk_21285 = 50000000; | 31 | unsigned int mem_fclk_21285 = 50000000; |
| 34 | 32 | ||
| 35 | EXPORT_SYMBOL(mem_fclk_21285); | 33 | EXPORT_SYMBOL(mem_fclk_21285); |
diff --git a/arch/arm/mach-footbridge/common.h b/arch/arm/mach-footbridge/common.h index 580e31bbc711..b05e662d21ad 100644 --- a/arch/arm/mach-footbridge/common.h +++ b/arch/arm/mach-footbridge/common.h | |||
| @@ -7,3 +7,4 @@ extern void isa_rtc_init(void); | |||
| 7 | extern void footbridge_map_io(void); | 7 | extern void footbridge_map_io(void); |
| 8 | extern void footbridge_init_irq(void); | 8 | extern void footbridge_init_irq(void); |
| 9 | 9 | ||
| 10 | extern void isa_init_irq(unsigned int irq); | ||
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c index 133086019e3e..3ffa54841ec5 100644 --- a/arch/arm/mach-footbridge/dc21285.c +++ b/arch/arm/mach-footbridge/dc21285.c | |||
| @@ -287,6 +287,9 @@ struct pci_bus * __init dc21285_scan_bus(int nr, struct pci_sys_data *sys) | |||
| 287 | return pci_scan_bus(0, &dc21285_ops, sys); | 287 | return pci_scan_bus(0, &dc21285_ops, sys); |
| 288 | } | 288 | } |
| 289 | 289 | ||
| 290 | #define dc21285_request_irq(_a, _b, _c, _d, _e) \ | ||
| 291 | WARN_ON(request_irq(_a, _b, _c, _d, _e) < 0) | ||
| 292 | |||
| 290 | void __init dc21285_preinit(void) | 293 | void __init dc21285_preinit(void) |
| 291 | { | 294 | { |
| 292 | unsigned int mem_size, mem_mask; | 295 | unsigned int mem_size, mem_mask; |
| @@ -335,16 +338,16 @@ void __init dc21285_preinit(void) | |||
| 335 | /* | 338 | /* |
| 336 | * We don't care if these fail. | 339 | * We don't care if these fail. |
| 337 | */ | 340 | */ |
| 338 | request_irq(IRQ_PCI_SERR, dc21285_serr_irq, IRQF_DISABLED, | 341 | dc21285_request_irq(IRQ_PCI_SERR, dc21285_serr_irq, IRQF_DISABLED, |
| 339 | "PCI system error", &serr_timer); | 342 | "PCI system error", &serr_timer); |
| 340 | request_irq(IRQ_PCI_PERR, dc21285_parity_irq, IRQF_DISABLED, | 343 | dc21285_request_irq(IRQ_PCI_PERR, dc21285_parity_irq, IRQF_DISABLED, |
| 341 | "PCI parity error", &perr_timer); | 344 | "PCI parity error", &perr_timer); |
| 342 | request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, IRQF_DISABLED, | 345 | dc21285_request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, IRQF_DISABLED, |
| 343 | "PCI abort", NULL); | 346 | "PCI abort", NULL); |
| 344 | request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, IRQF_DISABLED, | 347 | dc21285_request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, IRQF_DISABLED, |
| 345 | "Discard timer", NULL); | 348 | "Discard timer", NULL); |
| 346 | request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, IRQF_DISABLED, | 349 | dc21285_request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, IRQF_DISABLED, |
| 347 | "PCI data parity", NULL); | 350 | "PCI data parity", NULL); |
| 348 | 351 | ||
| 349 | if (cfn_mode) { | 352 | if (cfn_mode) { |
| 350 | static struct resource csrio; | 353 | static struct resource csrio; |
diff --git a/arch/arm/mach-footbridge/isa-irq.c b/arch/arm/mach-footbridge/isa-irq.c index 9ee80a211d3c..8bfd06aeb64d 100644 --- a/arch/arm/mach-footbridge/isa-irq.c +++ b/arch/arm/mach-footbridge/isa-irq.c | |||
| @@ -28,6 +28,8 @@ | |||
| 28 | #include <asm/irq.h> | 28 | #include <asm/irq.h> |
| 29 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
| 30 | 30 | ||
| 31 | #include "common.h" | ||
| 32 | |||
| 31 | static void isa_mask_pic_lo_irq(unsigned int irq) | 33 | static void isa_mask_pic_lo_irq(unsigned int irq) |
| 32 | { | 34 | { |
| 33 | unsigned int mask = 1 << (irq & 7); | 35 | unsigned int mask = 1 << (irq & 7); |
