diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2008-08-26 16:04:05 +0200 |
---|---|---|
committer | Nicolas Pitre <nico@cam.org> | 2008-09-25 16:26:44 -0400 |
commit | 1f8081f539a80c3d36a17ecd094d104eae60c01c (patch) | |
tree | 506a9455a96a7932ee01a7c4ea1432668e50eed3 /arch/arm/mach-mv78xx0/irq.c | |
parent | 144f814a439ff0b8ad62c51d74e56b490e651ded (diff) | |
download | kernel_samsung_smdk4412-1f8081f539a80c3d36a17ecd094d104eae60c01c.tar.gz kernel_samsung_smdk4412-1f8081f539a80c3d36a17ecd094d104eae60c01c.tar.bz2 kernel_samsung_smdk4412-1f8081f539a80c3d36a17ecd094d104eae60c01c.zip |
[ARM] mv78xx0: wire up ethernet error interrupt
Wire up the ethernet port's error interrupt so that the
mv643xx_eth driver can sleep for SMI event completion instead of
having to busy-wait for it.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch/arm/mach-mv78xx0/irq.c')
-rw-r--r-- | arch/arm/mach-mv78xx0/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-mv78xx0/irq.c b/arch/arm/mach-mv78xx0/irq.c index 28248d37b99..503e5d195ae 100644 --- a/arch/arm/mach-mv78xx0/irq.c +++ b/arch/arm/mach-mv78xx0/irq.c @@ -19,4 +19,5 @@ void __init mv78xx0_init_irq(void) { orion_irq_init(0, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF)); orion_irq_init(32, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF)); + orion_irq_init(64, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_ERR_OFF)); } |