aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/hifn_795x.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/crypto/hifn_795x.c')
-rw-r--r--drivers/crypto/hifn_795x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/hifn_795x.c b/drivers/crypto/hifn_795x.c
index fda32968a66b..ebf130e894b5 100644
--- a/drivers/crypto/hifn_795x.c
+++ b/drivers/crypto/hifn_795x.c
@@ -2561,7 +2561,7 @@ static void hifn_tasklet_callback(unsigned long data)
2561 hifn_process_queue(dev); 2561 hifn_process_queue(dev);
2562} 2562}
2563 2563
2564static int __devinit hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id) 2564static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2565{ 2565{
2566 int err, i; 2566 int err, i;
2567 struct hifn_device *dev; 2567 struct hifn_device *dev;
@@ -2696,7 +2696,7 @@ err_out_disable_pci_device:
2696 return err; 2696 return err;
2697} 2697}
2698 2698
2699static void __devexit hifn_remove(struct pci_dev *pdev) 2699static void hifn_remove(struct pci_dev *pdev)
2700{ 2700{
2701 int i; 2701 int i;
2702 struct hifn_device *dev; 2702 struct hifn_device *dev;
@@ -2740,7 +2740,7 @@ static struct pci_driver hifn_pci_driver = {
2740 .name = "hifn795x", 2740 .name = "hifn795x",
2741 .id_table = hifn_pci_tbl, 2741 .id_table = hifn_pci_tbl,
2742 .probe = hifn_probe, 2742 .probe = hifn_probe,
2743 .remove = __devexit_p(hifn_remove), 2743 .remove = hifn_remove,
2744}; 2744};
2745 2745
2746static int __init hifn_init(void) 2746static int __init hifn_init(void)