diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-09-18 14:41:18 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-09-26 11:07:37 +0200 |
commit | b5cbc510d5ef2433d8b23d11ce2e9e959411d00e (patch) | |
tree | 942a42acc77d77b863365f8dcc218f96776667f3 /arch/arm/mach-ux500 | |
parent | c316503b3ae4f30ae68735b2a89303f9653a7f42 (diff) | |
download | op-kernel-dev-b5cbc510d5ef2433d8b23d11ce2e9e959411d00e.zip op-kernel-dev-b5cbc510d5ef2433d8b23d11ce2e9e959411d00e.tar.gz |
ARM: ux500: Remove Light sensor Rohm BH1780GLI when booting with ATAGs
It's time to remove all ATAG support from ux500 and rely solely on
Device Tree booting. This patch is part of that endeavour.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/mach-ux500')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index a8c22cd2..94df003 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c @@ -54,24 +54,6 @@ struct ab8500_platform_data ab8500_platdata = { .regulator = &ab8500_regulator_plat_data, }; -static struct i2c_board_info __initdata mop500_i2c2_devices[] = { - { - /* Light sensor Rohm BH1780GLI */ - I2C_BOARD_INFO("bh1780", 0x29), - }, -}; - -static int __init mop500_i2c_board_init(void) -{ - if (machine_is_u8500()) - mop500_uib_i2c_add(0, mop500_i2c0_devices, - ARRAY_SIZE(mop500_i2c0_devices)); - mop500_uib_i2c_add(2, mop500_i2c2_devices, - ARRAY_SIZE(mop500_i2c2_devices)); - return 0; -} -device_initcall(mop500_i2c_board_init); - static void __init mop500_i2c_init(struct device *parent) { db8500_add_i2c0(parent, NULL); |