aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2011-12-20 16:27:38 -0500
committerOlof Johansson <olof@lixom.net>2011-12-21 16:57:43 -0500
commit0363e3dae1001179c9d26a44391bb8557dc2f240 (patch)
tree363d809193592941a72666d7467b844bc254556c
parent9838309b333bfb286d9e32b6a9aea8cc1dcbb537 (diff)
arm/at91: fix build of stamp9g20
Fixes build: arch/arm/mach-at91/board-stamp9g20.c:126: error: expected '}' before ';' token Signed-off-by: Olof Johansson <olof@lixom.net> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r--arch/arm/mach-at91/board-stamp9g20.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-at91/board-stamp9g20.c b/arch/arm/mach-at91/board-stamp9g20.c
index e8d3d5b88244..72eb3b4d9ab6 100644
--- a/arch/arm/mach-at91/board-stamp9g20.c
+++ b/arch/arm/mach-at91/board-stamp9g20.c
@@ -123,8 +123,8 @@ static void __init add_device_nand(void)
123static struct mci_platform_data __initdata mmc_data = { 123static struct mci_platform_data __initdata mmc_data = {
124 .slot[0] = { 124 .slot[0] = {
125 .bus_width = 4, 125 .bus_width = 4,
126 .detect_pin = -1; 126 .detect_pin = -1,
127 .wp_pin = -1; 127 .wp_pin = -1,
128 }, 128 },
129}; 129};
130#else 130#else