diff options
author | Hannes Reinecke <hare@suse.de> | 2012-06-12 09:59:45 -0400 |
---|---|---|
committer | Andrew Lunn <andrew@lunn.ch> | 2012-07-25 11:05:55 -0400 |
commit | 30e0f58035073c895a8d33e1521e412be73e02bc (patch) | |
tree | d5214c96980d459287cca5cedb6b81e8de7d84f4 /arch/arm | |
parent | b5409430ffaef1ed282d20cab868ee692df6dbff (diff) |
ARM: Dove: Fixup ge00 initialisation
The last argument of orion_ge00_init() is actually the error
interrupt, so we should be using the correct value here.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-dove/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index 9493076fc594..4db5de54b6a7 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c | |||
@@ -101,8 +101,8 @@ void __init dove_ehci1_init(void) | |||
101 | ****************************************************************************/ | 101 | ****************************************************************************/ |
102 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 102 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
103 | { | 103 | { |
104 | orion_ge00_init(eth_data, | 104 | orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE, |
105 | DOVE_GE00_PHYS_BASE, IRQ_DOVE_GE00_SUM, 0); | 105 | IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR); |
106 | } | 106 | } |
107 | 107 | ||
108 | /***************************************************************************** | 108 | /***************************************************************************** |