Commit f3d8fe40 authored by Mike Frysinger's avatar Mike Frysinger Committed by Herbert Xu

crypto: hifn_795x - fix __dev{init,exit} markings

The remove member of the pci_driver hifn_pci_driver uses __devexit_p(),
so the remove function itself should be marked with __devexit.  And where
there be __devexit on the remove, so is there __devinit on the probe.

Similarly, the module_init/module_exit functions should be declared with
plain __init/__exit markings, not the hotplug __dev{init,exit} ones.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Acked-by: default avatarEvgeniy Polyakov <zbr@ioremap.net>
CC: Patrick McHardy <kaber@trash.net>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 4e033a6b
...@@ -2564,7 +2564,7 @@ static void hifn_tasklet_callback(unsigned long data) ...@@ -2564,7 +2564,7 @@ static void hifn_tasklet_callback(unsigned long data)
hifn_process_queue(dev); hifn_process_queue(dev);
} }
static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id) static int __devinit hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{ {
int err, i; int err, i;
struct hifn_device *dev; struct hifn_device *dev;
...@@ -2696,7 +2696,7 @@ err_out_disable_pci_device: ...@@ -2696,7 +2696,7 @@ err_out_disable_pci_device:
return err; return err;
} }
static void hifn_remove(struct pci_dev *pdev) static void __devexit hifn_remove(struct pci_dev *pdev)
{ {
int i; int i;
struct hifn_device *dev; struct hifn_device *dev;
...@@ -2744,7 +2744,7 @@ static struct pci_driver hifn_pci_driver = { ...@@ -2744,7 +2744,7 @@ static struct pci_driver hifn_pci_driver = {
.remove = __devexit_p(hifn_remove), .remove = __devexit_p(hifn_remove),
}; };
static int __devinit hifn_init(void) static int __init hifn_init(void)
{ {
unsigned int freq; unsigned int freq;
int err; int err;
...@@ -2789,7 +2789,7 @@ static int __devinit hifn_init(void) ...@@ -2789,7 +2789,7 @@ static int __devinit hifn_init(void)
return 0; return 0;
} }
static void __devexit hifn_fini(void) static void __exit hifn_fini(void)
{ {
pci_unregister_driver(&hifn_pci_driver); pci_unregister_driver(&hifn_pci_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment