diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-04 04:12:49 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-03-08 19:35:10 -0400 |
commit | a700e72dd009c79c62e78ebeefa27315db6e1e60 (patch) | |
tree | 841d4f3ffbbf04d126b31838ce097765e105269b /drivers/input | |
parent | 65db86ac07e2f7f91a552490c0be6a99aab8e4a8 (diff) |
Input: wm97xx - use disable_irq_nosync() for Mainstone
This should make no practical difference since the Mainstone can't be
SMP but it is more correct.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/mainstone-wm97xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/mainstone-wm97xx.c b/drivers/input/touchscreen/mainstone-wm97xx.c index 1d11e2be9ef8..08d3dbd4ba29 100644 --- a/drivers/input/touchscreen/mainstone-wm97xx.c +++ b/drivers/input/touchscreen/mainstone-wm97xx.c | |||
@@ -245,7 +245,7 @@ static void wm97xx_irq_enable(struct wm97xx *wm, int enable) | |||
245 | if (enable) | 245 | if (enable) |
246 | enable_irq(wm->pen_irq); | 246 | enable_irq(wm->pen_irq); |
247 | else | 247 | else |
248 | disable_irq(wm->pen_irq); | 248 | disable_irq_nosync(wm->pen_irq); |
249 | } | 249 | } |
250 | 250 | ||
251 | static struct wm97xx_mach_ops mainstone_mach_ops = { | 251 | static struct wm97xx_mach_ops mainstone_mach_ops = { |