diff options
author | Daniel Tang <dt.tangr@gmail.com> | 2013-07-07 08:53:26 +0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2013-07-07 08:57:33 +0400 |
commit | 46146e7d4b383d5b34014d072553498c7cd52821 (patch) | |
tree | 1474debeb76561fca2966f158692c003bd78409a /drivers/input/keyboard/nspire-keypad.c | |
parent | 9eebed7de660c0b5ab129a9de4f89d20b60de68c (diff) | |
download | linux-46146e7d4b383d5b34014d072553498c7cd52821.tar.xz |
Input: nspire-keypad - replace magic offset with define
Signed-off-by: Daniel Tang <dt.tangr@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/keyboard/nspire-keypad.c')
-rw-r--r-- | drivers/input/keyboard/nspire-keypad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/nspire-keypad.c b/drivers/input/keyboard/nspire-keypad.c index e0a1339e40e6..20d872d6f603 100644 --- a/drivers/input/keyboard/nspire-keypad.c +++ b/drivers/input/keyboard/nspire-keypad.c @@ -122,7 +122,7 @@ static int nspire_keypad_chip_init(struct nspire_keypad *keypad) /* Enable interrupts */ keypad->int_mask = 1 << 1; - writel(keypad->int_mask, keypad->reg_base + 0xc); + writel(keypad->int_mask, keypad->reg_base + KEYPAD_INTMSK); /* Disable GPIO interrupts to prevent hanging on touchpad */ /* Possibly used to detect touchpad events */ |