isdn/eicon: don't call flush_scheduled_work() from diva_os_remove_soft_isr()

diva doesn't use workqueue and there is no reason to flush the system
workqueue from diva_os_remove_soft_isr().  Remove it.

This is to prepare for the deprecation and removal of
flush_scheduled_work().

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Armin Schindler <armin@melware.de>
This commit is contained in:
Tejun Heo 2010-10-17 11:25:03 +02:00
Родитель 6370a6ad3b
Коммит 7bf4a5ddc9
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -15,7 +15,6 @@
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/io.h> #include <asm/io.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/workqueue.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/list.h> #include <linux/list.h>
@ -546,7 +545,6 @@ void diva_os_remove_soft_isr(diva_os_soft_isr_t * psoft_isr)
void *mem; void *mem;
tasklet_kill(&pdpc->divas_task); tasklet_kill(&pdpc->divas_task);
flush_scheduled_work();
mem = psoft_isr->object; mem = psoft_isr->object;
psoft_isr->object = NULL; psoft_isr->object = NULL;
diva_os_free(0, mem); diva_os_free(0, mem);