diff options
author | Olof Johansson <olof@lixom.net> | 2011-12-20 13:27:38 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2011-12-21 13:57:43 -0800 |
commit | 0363e3dae1001179c9d26a44391bb8557dc2f240 (patch) | |
tree | 363d809193592941a72666d7467b844bc254556c /arch/arm | |
parent | 9838309b333bfb286d9e32b6a9aea8cc1dcbb537 (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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-at91/board-stamp9g20.c | 4 |
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) static struct mci_platform_data __initdata mmc_data = { .slot[0] = { .bus_width = 4, - .detect_pin = -1; - .wp_pin = -1; + .detect_pin = -1, + .wp_pin = -1, }, }; #else |