Skip to content

Commit

Permalink
arm/at91: fix build of stamp9g20
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Olof Johansson committed Dec 21, 2011
1 parent 9838309 commit 0363e3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-at91/board-stamp9g20.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0363e3d

Please sign in to comment.