From: kashyap.desai@lsi.com Date: Thu, 4 Aug 2011 11:17:50 +0000 (+0530) Subject: [SCSI] mpt2sas: Added missing mpt2sas_base_detach call from scsih_remove context X-Git-Tag: next-20110825~56^2~39 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dc7323ec1c61ac9b68b13820fed2fa7e5e3e1990;p=karo-tx-linux.git [SCSI] mpt2sas: Added missing mpt2sas_base_detach call from scsih_remove context mpt2sas_base_detach() call was removed from _scsih_remove() while doing some code shuffling. Mainly when we work on adding code for scsih_shutdown(). I have added back mpt2sas_base_detach() which will get callled from _scsih_remove(). Signed-off-by: Kashyap Desai Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c index 6abd2fcc43e2..6bb3986094d3 100644 --- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c +++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c @@ -7354,6 +7354,7 @@ _scsih_remove(struct pci_dev *pdev) } sas_remove_host(shost); + mpt2sas_base_detach(ioc); list_del(&ioc->list); scsi_remove_host(shost); scsi_host_put(shost);