aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/mach-ecovec24
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-18 06:47:37 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-01-18 06:47:37 -0500
commit0c54de146ef4303ed3c5879b043894c8db637507 (patch)
treea4ff5bf27ffd2c4b71271b42014a0040490c7271 /arch/sh/boards/mach-ecovec24
parent8faba6121566248330e738d25a2c43d7500fb9f0 (diff)
parent7dc9c484a71525794ca05cf7a47f283f1b54cd12 (diff)
Merge branch 'sh/stable-updates'
Diffstat (limited to 'arch/sh/boards/mach-ecovec24')
-rw-r--r--arch/sh/boards/mach-ecovec24/setup.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c
index a6b223332d15..a49cce16e783 100644
--- a/arch/sh/boards/mach-ecovec24/setup.c
+++ b/arch/sh/boards/mach-ecovec24/setup.c
@@ -351,6 +351,10 @@ static struct i2c_board_info i2c1_devices[] = {
351 { 351 {
352 I2C_BOARD_INFO("r2025sd", 0x32), 352 I2C_BOARD_INFO("r2025sd", 0x32),
353 }, 353 },
354 {
355 I2C_BOARD_INFO("lis3lv02d", 0x1c),
356 .irq = 33,
357 }
354}; 358};
355 359
356/* KEYSC */ 360/* KEYSC */
@@ -1113,6 +1117,10 @@ static int __init arch_setup(void)
1113 gpio_direction_output(GPIO_PTU0, 0); 1117 gpio_direction_output(GPIO_PTU0, 0);
1114 mdelay(20); 1118 mdelay(20);
1115 1119
1120 /* enable motion sensor */
1121 gpio_request(GPIO_FN_INTC_IRQ1, NULL);
1122 gpio_direction_input(GPIO_FN_INTC_IRQ1);
1123
1116 /* enable I2C device */ 1124 /* enable I2C device */
1117 i2c_register_board_info(0, i2c0_devices, 1125 i2c_register_board_info(0, i2c0_devices,
1118 ARRAY_SIZE(i2c0_devices)); 1126 ARRAY_SIZE(i2c0_devices));