summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx5/board-mx51_efikasb.c
diff options
context:
space:
mode:
authorArnaud Patard (Rtp)2011-06-27 22:41:06 +0200
committerSascha Hauer2011-07-26 09:14:53 +0200
commitfbd60a7e87213f702889be21ac14c59fa62defe9 (patch)
tree9d950a506379f19facd15987ca545e58056e7ed7 /arch/arm/mach-mx5/board-mx51_efikasb.c
parentefikasb: fix gpio keys. (diff)
downloadkernel-qcow2-linux-fbd60a7e87213f702889be21ac14c59fa62defe9.tar.gz
kernel-qcow2-linux-fbd60a7e87213f702889be21ac14c59fa62defe9.tar.xz
kernel-qcow2-linux-fbd60a7e87213f702889be21ac14c59fa62defe9.zip
efika: Fix board id detection
Current code is assuming that gpio_get_value() is returning 0 or 1 but it should be checking if the value is 0 or not. Not doing it properly is breaking the detection of the board (and thus the reboot of efika mx to2) when using the new mxc gpio driver, which relies on basic mmio gpio. Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx5/board-mx51_efikasb.c')
-rw-r--r--arch/arm/mach-mx5/board-mx51_efikasb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx5/board-mx51_efikasb.c b/arch/arm/mach-mx5/board-mx51_efikasb.c
index 8054f3f7f491..f0c33b39d3e7 100644
--- a/arch/arm/mach-mx5/board-mx51_efikasb.c
+++ b/arch/arm/mach-mx5/board-mx51_efikasb.c
@@ -232,8 +232,8 @@ static void __init mx51_efikasb_board_id(void)
gpio_request(EFIKASB_PCBID1, "pcb id1");
gpio_direction_input(EFIKASB_PCBID1);
- id = gpio_get_value(EFIKASB_PCBID0);
- id |= gpio_get_value(EFIKASB_PCBID1) << 1;
+ id = gpio_get_value(EFIKASB_PCBID0) ? 1 : 0;
+ id |= (gpio_get_value(EFIKASB_PCBID1) ? 1 : 0) << 1;
switch (id) {
default: