diff options
author | Stephen Warren <swarren@nvidia.com> | 2011-07-13 14:53:53 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2011-07-19 09:27:36 -0400 |
commit | 29e9c68abe503fa65ef4f37bb19a1683f8610219 (patch) | |
tree | 498e24bed40a0fcc0d39d7e565a8b8d02cbf7639 /arch/arm/mach-tegra/board-seaboard.c | |
parent | 3a2eef8eeb8ee3af407dfc8394991aeb452fe6aa (diff) |
ARM: Tegra: Seaboard: Fix I2C bus numbering for ADT7461
Bus number 4 doesn't exist in the mainline kernel. The device is
attached to bus number 3. (In the ChromeOS kernel, one of the I2C
busses is split in two with a mux, this pushing all later busses
to a higher bus number. In this case, 4 is the correct bus number
for the ADT7461).
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-tegra/board-seaboard.c')
-rw-r--r-- | arch/arm/mach-tegra/board-seaboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-seaboard.c b/arch/arm/mach-tegra/board-seaboard.c index a8d7ace9f958..10fbbdc8699a 100644 --- a/arch/arm/mach-tegra/board-seaboard.c +++ b/arch/arm/mach-tegra/board-seaboard.c | |||
@@ -159,7 +159,7 @@ static void __init seaboard_i2c_init(void) | |||
159 | 159 | ||
160 | i2c_register_board_info(0, &isl29018_device, 1); | 160 | i2c_register_board_info(0, &isl29018_device, 1); |
161 | 161 | ||
162 | i2c_register_board_info(4, &adt7461_device, 1); | 162 | i2c_register_board_info(3, &adt7461_device, 1); |
163 | 163 | ||
164 | tegra_i2c_device1.dev.platform_data = &seaboard_i2c1_platform_data; | 164 | tegra_i2c_device1.dev.platform_data = &seaboard_i2c1_platform_data; |
165 | tegra_i2c_device2.dev.platform_data = &seaboard_i2c2_platform_data; | 165 | tegra_i2c_device2.dev.platform_data = &seaboard_i2c2_platform_data; |