diff options
author | Tetsuyuki Kobayashi <koba@kmckk.co.jp> | 2012-09-14 13:14:29 +0400 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-10-30 11:21:10 +0400 |
commit | 608c5620d90c016f9cdb7b90a14761849cf344b2 (patch) | |
tree | f3f09098b7621b9c782cb72649fe709193250410 /arch/arm/mach-shmobile | |
parent | 8cec0123bb762eb90753f61a0e5a0c2ff91aec25 (diff) | |
download | linux-608c5620d90c016f9cdb7b90a14761849cf344b2.tar.xz |
ARM: shmobile: kzm9g: enable three-axis digital accelerometer ADXL345
This patch enables three-axis digital accelerometer ADXL345.
Test:
sudo cat /dev/input/event2
then tip up the board. You get something from /dev/input/event2.
Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/board-kzm9g.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c index a37da78687f2..1a4642200747 100644 --- a/arch/arm/mach-shmobile/board-kzm9g.c +++ b/arch/arm/mach-shmobile/board-kzm9g.c @@ -562,6 +562,10 @@ static struct i2c_board_info i2c0_devices[] = { I2C_BOARD_INFO("ak8975", 0x0c), .irq = intcs_evt2irq(0x3380), /* IRQ28 */ }, + { + I2C_BOARD_INFO("adxl34x", 0x1d), + .irq = intcs_evt2irq(0x3340), /* IRQ26 */ + }, }; static struct i2c_board_info i2c1_devices[] = { |