mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 23:52:08 +02:00
mtd: don't use flush_scheduled_work()
flush_scheduled_work() is deprecated and scheduled to be removed.
Directly flush cxt->work_{erase|write} on removal instead.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
d983c54ebd
commit
75c52a4963
|
|
@ -396,7 +396,8 @@ static void mtdoops_notify_remove(struct mtd_info *mtd)
|
|||
printk(KERN_WARNING "mtdoops: could not unregister kmsg_dumper\n");
|
||||
|
||||
cxt->mtd = NULL;
|
||||
flush_scheduled_work();
|
||||
flush_work_sync(&cxt->work_erase);
|
||||
flush_work_sync(&cxt->work_write);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user