diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-08-23 04:24:38 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-09-26 05:08:33 -0400 |
commit | f368a0874b314f53d8cd2739731a66c961db6d48 (patch) | |
tree | d8c3028bd91a58edb478b690f9e90a94d2ff152a | |
parent | 791ffcdebf7a9553bfc46b39689e26531b1e1f02 (diff) |
ARM: ux500: Don't register Synaptics RMI4 TS 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>
-rw-r--r-- | arch/arm/mach-ux500/board-mop500-u8500uib.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/arm/mach-ux500/board-mop500-u8500uib.c b/arch/arm/mach-ux500/board-mop500-u8500uib.c index 6f6553e19c00..43c9ff109d13 100644 --- a/arch/arm/mach-ux500/board-mop500-u8500uib.c +++ b/arch/arm/mach-ux500/board-mop500-u8500uib.c | |||
@@ -4,25 +4,11 @@ | |||
4 | * Board data for the U8500 UIB, also known as the New UIB | 4 | * Board data for the U8500 UIB, also known as the New UIB |
5 | * License terms: GNU General Public License (GPL), version 2 | 5 | * License terms: GNU General Public License (GPL), version 2 |
6 | */ | 6 | */ |
7 | #include <linux/gpio.h> | ||
8 | #include <linux/kernel.h> | 7 | #include <linux/kernel.h> |
9 | #include <linux/init.h> | 8 | #include <linux/init.h> |
10 | #include <linux/i2c.h> | ||
11 | #include <linux/interrupt.h> | ||
12 | |||
13 | #include "irqs.h" | ||
14 | 9 | ||
15 | #include "board-mop500.h" | 10 | #include "board-mop500.h" |
16 | 11 | ||
17 | static struct i2c_board_info __initdata mop500_i2c3_devices_u8500[] = { | ||
18 | { | ||
19 | I2C_BOARD_INFO("synaptics_rmi4_i2c", 0x4B), | ||
20 | .irq = NOMADIK_GPIO_TO_IRQ(84), | ||
21 | }, | ||
22 | }; | ||
23 | |||
24 | void __init mop500_u8500uib_init(void) | 12 | void __init mop500_u8500uib_init(void) |
25 | { | 13 | { |
26 | mop500_uib_i2c_add(3, mop500_i2c3_devices_u8500, | ||
27 | ARRAY_SIZE(mop500_i2c3_devices_u8500)); | ||
28 | } | 14 | } |