summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91
diff options
context:
space:
mode:
authorRob Alley <rob.alley@navmanwireless.com>2010-03-11 02:15:04 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-03-13 10:48:21 +0000
commit438ff39d7813515d3aac20f53b5b95aaa58b38f9 (patch)
tree68b22f32bc7abd06bd7384317754236587940afe /arch/arm/mach-at91
parenta2302b45d8ab41a55e84c39a6c6f813586ad8493 (diff)
downloadop-kernel-dev-438ff39d7813515d3aac20f53b5b95aaa58b38f9.zip
op-kernel-dev-438ff39d7813515d3aac20f53b5b95aaa58b38f9.tar.gz
ARM: 5986/1: at91sam9g20-ek: Correct braces in I2C registration code
The change introduced in patch 5596/1 used incorrect bracing which resulted in the AT24 EEPROM no longer being registered. This patch corrects the bracing and allows both the WM8731 audio device and AT24 EEPROM device to be registered. Signed-off-by: Rob Alley <rob.alley@navmanwireless.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r--arch/arm/mach-at91/board-sam9g20ek.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/mach-at91/board-sam9g20ek.c b/arch/arm/mach-at91/board-sam9g20ek.c
index 29cf831..c11fd47 100644
--- a/arch/arm/mach-at91/board-sam9g20ek.c
+++ b/arch/arm/mach-at91/board-sam9g20ek.c
@@ -271,10 +271,12 @@ static void __init ek_add_device_buttons(void) {}
static struct i2c_board_info __initdata ek_i2c_devices[] = {
- {
- I2C_BOARD_INFO("24c512", 0x50),
- I2C_BOARD_INFO("wm8731", 0x1b),
- },
+ {
+ I2C_BOARD_INFO("24c512", 0x50)
+ },
+ {
+ I2C_BOARD_INFO("wm8731", 0x1b)
+ },
};
OpenPOWER on IntegriCloud