diff options
author | Matt Wagner <mwagner@nvidia.com> | 2012-11-17 12:30:55 -0800 |
---|---|---|
committer | Rohan Somvanshi <rsomvanshi@nvidia.com> | 2012-11-21 09:07:52 -0800 |
commit | e51e19ba8d2e94a0d05eb3cf4ff251df79774836 (patch) | |
tree | d006bdb1bfeb9d73ec2b6c3a0f55e79418565c8f /arch/arm | |
parent | e90e6eecf2d86341c6551040334709f3f5041d90 (diff) |
ARM: Tegra: Dalmore: Fix Pinmux for Hall Effect Sensor
Change KB_ROW8 to PULL_UP since the Hall Effect Sensor is
active low. This allows the board to boot correctly if the
sensor module is broken or missing
Bug 1177461
Change-Id: Icb390b634314f4cdc9bfe12902b263396c7d9302
Signed-off-by: Matt Wagner <mwagner@nvidia.com>
Reviewed-on: http://git-master/r/164544
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Thomas Cherry <tcherry@nvidia.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-tegra/board-dalmore-pinmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-dalmore-pinmux.c b/arch/arm/mach-tegra/board-dalmore-pinmux.c index 1685a5e9df0b..06d436b982da 100644 --- a/arch/arm/mach-tegra/board-dalmore-pinmux.c +++ b/arch/arm/mach-tegra/board-dalmore-pinmux.c @@ -242,7 +242,7 @@ static __initdata struct tegra_pingroup_config dalmore_pinmux_set_nontristate[] DEFAULT_PINMUX(KB_ROW3, KBC, PULL_DOWN, NORMAL, INPUT), DEFAULT_PINMUX(KB_ROW4, KBC, PULL_DOWN, NORMAL, INPUT), DEFAULT_PINMUX(KB_ROW6, KBC, PULL_DOWN, NORMAL, INPUT), - DEFAULT_PINMUX(KB_ROW8, KBC, PULL_DOWN, NORMAL, INPUT), + DEFAULT_PINMUX(KB_ROW8, KBC, PULL_UP, NORMAL, INPUT), DEFAULT_PINMUX(CLK3_REQ, RSVD3, NORMAL, NORMAL, OUTPUT), DEFAULT_PINMUX(GPIO_PU4, RSVD3, NORMAL, NORMAL, OUTPUT), |