Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30e0f580 authored by Hannes Reinecke's avatar Hannes Reinecke Committed by Andrew Lunn
Browse files

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: default avatarHannes Reinecke <hare@suse.de>
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
parent b5409430
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -101,8 +101,8 @@ void __init dove_ehci1_init(void)
 ****************************************************************************/
 ****************************************************************************/
void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
{
{
	orion_ge00_init(eth_data,
	orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE,
			DOVE_GE00_PHYS_BASE, IRQ_DOVE_GE00_SUM, 0);
			IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR);
}
}


/*****************************************************************************
/*****************************************************************************