Browse Source

crypto: qat - remove incorrect __exit markup

PCI bus is hot-pluggable, and even if it wasn't one can still unbind the
device from driver via sysfs, so we should not make driver's remove
method as __exit.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Dmitry Torokhov 10 years ago
parent
commit
83ce01d24a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/crypto/qat/qat_dh895xcc/adf_drv.c

+ 1 - 1
drivers/crypto/qat/qat_dh895xcc/adf_drv.c

@@ -379,7 +379,7 @@ out_err:
 	return ret;
 }
 
-static void __exit adf_remove(struct pci_dev *pdev)
+static void adf_remove(struct pci_dev *pdev)
 {
 	struct adf_accel_dev *accel_dev = adf_devmgr_pci_to_accel_dev(pdev);