Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148817
b: refs/heads/master
c: f3d8fe4
h: refs/heads/master
i:
  148815: 15aaa08
v: v3
  • Loading branch information
Mike Frysinger authored and Herbert Xu committed Jun 2, 2009
1 parent b0dbb47 commit be0f8bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e033a6bc70f094d36128c328f6ca725c6ca4b4c
refs/heads/master: f3d8fe40498eea9f45be260bdf6ccada845411f3
8 changes: 4 additions & 4 deletions trunk/drivers/crypto/hifn_795x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2564,7 +2564,7 @@ static void hifn_tasklet_callback(unsigned long data)
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;
struct hifn_device *dev;
Expand Down Expand Up @@ -2696,7 +2696,7 @@ static int hifn_probe(struct pci_dev *pdev, const struct pci_device_id *id)
return err;
}

static void hifn_remove(struct pci_dev *pdev)
static void __devexit hifn_remove(struct pci_dev *pdev)
{
int i;
struct hifn_device *dev;
Expand Down Expand Up @@ -2744,7 +2744,7 @@ static struct pci_driver hifn_pci_driver = {
.remove = __devexit_p(hifn_remove),
};

static int __devinit hifn_init(void)
static int __init hifn_init(void)
{
unsigned int freq;
int err;
Expand Down Expand Up @@ -2789,7 +2789,7 @@ static int __devinit hifn_init(void)
return 0;
}

static void __devexit hifn_fini(void)
static void __exit hifn_fini(void)
{
pci_unregister_driver(&hifn_pci_driver);

Expand Down

0 comments on commit be0f8bd

Please sign in to comment.