diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-10-15 14:50:02 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-10-15 14:50:02 +0200 |
commit | 36bd262b3f2ac723dadd20ce35539c8c738877f1 (patch) | |
tree | 1ab3a0e5b7b45f4eaf384f0c5d091a522e563d42 /drivers/input/keyboard/locomokbd.c | |
parent | [ARM] Fix fallout from IRQ regs changes (diff) | |
download | linux-36bd262b3f2ac723dadd20ce35539c8c738877f1.tar.xz linux-36bd262b3f2ac723dadd20ce35539c8c738877f1.zip |
[ARM] Fix Zaurii keyboard/touchscreen drivers
The Zaurii drivers were partially fixed up for the IRQ register
changes, but unfortunately missed some bits, resulting in build
errors. Fix these.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/input/keyboard/locomokbd.c')
-rw-r--r-- | drivers/input/keyboard/locomokbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/locomokbd.c b/drivers/input/keyboard/locomokbd.c index fd33c9cc3272..5788dbc317bb 100644 --- a/drivers/input/keyboard/locomokbd.c +++ b/drivers/input/keyboard/locomokbd.c @@ -186,7 +186,7 @@ static irqreturn_t locomokbd_interrupt(int irq, void *dev_id) static void locomokbd_timer_callback(unsigned long data) { struct locomokbd *locomokbd = (struct locomokbd *) data; - locomokbd_scankeyboard(locomokbd, NULL); + locomokbd_scankeyboard(locomokbd); } static int locomokbd_probe(struct locomo_dev *dev) |