rsxx: add missed destroy_workqueue calls in remove
[ Upstream commit dcb77e4b27
]
The driver misses calling destroy_workqueue in remove like what is done
when probe fails.
Add the missed calls to fix it.
Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5e78b5ebdd
commit
a4b6dafb84
@ -1028,8 +1028,10 @@ static void rsxx_pci_remove(struct pci_dev *dev)
|
|||||||
|
|
||||||
cancel_work_sync(&card->event_work);
|
cancel_work_sync(&card->event_work);
|
||||||
|
|
||||||
|
destroy_workqueue(card->event_wq);
|
||||||
rsxx_destroy_dev(card);
|
rsxx_destroy_dev(card);
|
||||||
rsxx_dma_destroy(card);
|
rsxx_dma_destroy(card);
|
||||||
|
destroy_workqueue(card->creg_ctrl.creg_wq);
|
||||||
|
|
||||||
spin_lock_irqsave(&card->irq_lock, flags);
|
spin_lock_irqsave(&card->irq_lock, flags);
|
||||||
rsxx_disable_ier_and_isr(card, CR_INTR_ALL);
|
rsxx_disable_ier_and_isr(card, CR_INTR_ALL);
|
||||||
|
Reference in New Issue
Block a user