diff options
author | Tejun Heo <tj@kernel.org> | 2010-12-24 09:59:07 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2010-12-24 09:59:07 -0500 |
commit | 3514870f06a7907bc46361aebc3daf5ea4e97eeb (patch) | |
tree | f1ece815d9e42578086dc7648975674aa59761a2 /drivers/char/sonypi.c | |
parent | 42565999d1e0b8a0c5b4a0d475c26cf3d567e85e (diff) |
sonypi: don't use flush_scheduled_work()
flush_scheduled_work() is deprecated and scheduled to be removed.
Directly flush sonypi_device.input_work on removal instead.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: 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 73f66d03624d..79e36c878a4c 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 | sonypi_disable(); | 1434 | sonypi_disable(); |
1435 | 1435 | ||
1436 | synchronize_irq(sonypi_device.irq); | 1436 | synchronize_irq(sonypi_device.irq); |
1437 | flush_scheduled_work(); | 1437 | flush_work_sync(&sonypi_device.input_work); |
1438 | 1438 | ||
1439 | if (useinput) { | 1439 | if (useinput) { |
1440 | input_unregister_device(sonypi_device.input_key_dev); | 1440 | input_unregister_device(sonypi_device.input_key_dev); |