summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91rm9200/board-sam9260ek.c
diff options
context:
space:
mode:
authorAndrew Victor <andrew@sanpeople.com>2007-02-01 09:22:23 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2007-02-08 14:50:53 +0000
commita93d48cc6019f84394b31d10c0d830a3b71696be (patch)
tree9b39c44631e1c6de0336a02e56e4e6f446761069 /arch/arm/mach-at91rm9200/board-sam9260ek.c
parentae0a846e411dc0b568e8ccda584896310ee5f369 (diff)
downloadlinux-a93d48cc6019f84394b31d10c0d830a3b71696be.tar.bz2
[ARM] 4119/1: AT91: Fix build of AT91SAM9260
Fix build failure of AT91SAM9260. The AT91RM9200 ethernet driver (at91_ether.c) stores platform data in a "struct at91_eth_data" structure, but the AT91SAM9260 (and AT91SAM9263) ethernet driver (macb.c) [developed on the AVR32 architecture] expects a "struct eth_platform_data". Since the platform data of the two drivers is very similar, we continue to use the "struct at91_eth_data" for all AT91 processors but add a #define eth_platform_data at91_eth_data in board.h to keep the MACB driver happy. Original patch by Jan Altenberg. Signed-off-by: Andrew Victor <andrew@sanpeople.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91rm9200/board-sam9260ek.c')
-rw-r--r--arch/arm/mach-at91rm9200/board-sam9260ek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-at91rm9200/board-sam9260ek.c b/arch/arm/mach-at91rm9200/board-sam9260ek.c
index da5d58ac870b..37c7a7d195c3 100644
--- a/arch/arm/mach-at91rm9200/board-sam9260ek.c
+++ b/arch/arm/mach-at91rm9200/board-sam9260ek.c
@@ -118,7 +118,7 @@ static struct spi_board_info ek_spi_devices[] = {
/*
* MACB Ethernet device
*/
-static struct __initdata eth_platform_data ek_macb_data = {
+static struct __initdata at91_eth_data ek_macb_data = {
.phy_irq_pin = AT91_PIN_PA7,
.is_rmii = 1,
};