diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2007-11-21 14:16:38 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2007-11-21 14:16:38 -0500 |
commit | 3cb93db6e89bdffeae1f001bd87c9e96f9b634df (patch) | |
tree | fee324cec1e8fe81ad05f5306e7c86a0dc87e10d /drivers/char/sonypi.c | |
parent | dcf65cd41c980278f98b6fc0d9da52747e7d058f (diff) |
Sonypi: use synchronize_irq instead of sycnronize_sched
We know exactly what IRQ we are using, so synchronize_irq()
suits much better. Plus synchronize_sched() will not work
for us in -rt kernels.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Acked-by: Mattia Dongili <malattia@linux.it>
Diffstat (limited to 'drivers/char/sonypi.c')
-rw-r--r-- | drivers/char/sonypi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c index 172d3e47070f..921c6d2bc8fc 100644 --- a/drivers/char/sonypi.c +++ b/drivers/char/sonypi.c | |||
@@ -1434,7 +1434,7 @@ static int __devexit sonypi_remove(struct platform_device *dev) | |||
1434 | { | 1434 | { |
1435 | sonypi_disable(); | 1435 | sonypi_disable(); |
1436 | 1436 | ||
1437 | synchronize_sched(); /* Allow sonypi interrupt to complete. */ | 1437 | synchronize_irq(sonypi_device.irq); |
1438 | flush_scheduled_work(); | 1438 | flush_scheduled_work(); |
1439 | 1439 | ||
1440 | if (useinput) { | 1440 | if (useinput) { |