scsi: qedf: Add shutdown callback handler
Add shutdown callback handler. Signed-off-by: Saurav Kashyap <skashyap@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
ec6350b800
commit
31696204c4
|
@ -27,6 +27,7 @@ const struct qed_fcoe_ops *qed_ops;
|
|||
|
||||
static int qedf_probe(struct pci_dev *pdev, const struct pci_device_id *id);
|
||||
static void qedf_remove(struct pci_dev *pdev);
|
||||
static void qedf_shutdown(struct pci_dev *pdev);
|
||||
|
||||
/*
|
||||
* Driver module parameters.
|
||||
|
@ -3134,6 +3135,7 @@ static struct pci_driver qedf_pci_driver = {
|
|||
.id_table = qedf_pci_tbl,
|
||||
.probe = qedf_probe,
|
||||
.remove = qedf_remove,
|
||||
.shutdown = qedf_shutdown,
|
||||
};
|
||||
|
||||
static int __qedf_probe(struct pci_dev *pdev, int mode)
|
||||
|
@ -3749,6 +3751,11 @@ void qedf_get_protocol_tlv_data(void *dev, void *data)
|
|||
fcoe->scsi_tsk_full = qedf->task_set_fulls;
|
||||
}
|
||||
|
||||
static void qedf_shutdown(struct pci_dev *pdev)
|
||||
{
|
||||
__qedf_remove(pdev, QEDF_MODE_NORMAL);
|
||||
}
|
||||
|
||||
/* Generic TLV data callback */
|
||||
void qedf_get_generic_tlv_data(void *dev, struct qed_generic_tlvs *data)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue