summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schaeffer <daniel@dschaeffer.localdomain>2008-02-01 14:39:05 -0500
committerDaniel Schaeffer <daniel@dschaeffer.localdomain>2008-02-01 14:39:05 -0500
commit1fed0cde21956d6d100b2734cfe3bba88786dbbd (patch)
tree5f361c57fb2a294346086fbc0cf2010ac44cda4b
parent3982d14c0b840ec435bc027bd2fc62d0379ba26d (diff)
Fixed LONG() referance
Changes to be committed: modified: drivers/input/touchscreen/mxc_ts.c
-rw-r--r--drivers/input/touchscreen/mxc_ts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/mxc_ts.c b/drivers/input/touchscreen/mxc_ts.c
index 33750c200ac0..b346c21eec99 100644
--- a/drivers/input/touchscreen/mxc_ts.c
+++ b/drivers/input/touchscreen/mxc_ts.c
@@ -75,7 +75,7 @@ static int __init mxc_ts_init(void)
mxc_inputdev->name = MXC_TS_NAME;
mxc_inputdev->evbit[0] = BIT(EV_KEY) | BIT(EV_ABS);
- mxc_inputdev->keybit[LONG(BTN_TOUCH)] |= BIT(BTN_TOUCH);
+ mxc_inputdev->keybit[BIT_WORD(BTN_TOUCH)] |= BIT(BTN_TOUCH);
mxc_inputdev->absbit[0] = BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE);
input_register_device(mxc_inputdev);