diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2013-02-05 22:03:13 -0500 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-02-06 03:34:20 -0500 |
commit | 82bed4d5f8189a2f9db5d1bb6489ac2615426d65 (patch) | |
tree | 542894373fc2e22d49cc22c6b70d9ec7111c2676 /drivers/block/rsxx | |
parent | 8722ff8cdbfac9c1b20e67bb067b455c48cb8e93 (diff) |
block: remove new __devinit/exit annotations on ramsam driver
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/rsxx')
-rw-r--r-- | drivers/block/rsxx/core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/rsxx/core.c b/drivers/block/rsxx/core.c index f75219140e70..83dadbee0375 100644 --- a/drivers/block/rsxx/core.c +++ b/drivers/block/rsxx/core.c | |||
@@ -319,7 +319,7 @@ static int rsxx_compatibility_check(struct rsxx_cardinfo *card) | |||
319 | return 0; | 319 | return 0; |
320 | } | 320 | } |
321 | 321 | ||
322 | static int __devinit rsxx_pci_probe(struct pci_dev *dev, | 322 | static int rsxx_pci_probe(struct pci_dev *dev, |
323 | const struct pci_device_id *id) | 323 | const struct pci_device_id *id) |
324 | { | 324 | { |
325 | struct rsxx_cardinfo *card; | 325 | struct rsxx_cardinfo *card; |
@@ -510,7 +510,7 @@ failed_ida_get: | |||
510 | return st; | 510 | return st; |
511 | } | 511 | } |
512 | 512 | ||
513 | static void __devexit rsxx_pci_remove(struct pci_dev *dev) | 513 | static void rsxx_pci_remove(struct pci_dev *dev) |
514 | { | 514 | { |
515 | struct rsxx_cardinfo *card = pci_get_drvdata(dev); | 515 | struct rsxx_cardinfo *card = pci_get_drvdata(dev); |
516 | unsigned long flags; | 516 | unsigned long flags; |
@@ -608,7 +608,7 @@ static struct pci_driver rsxx_pci_driver = { | |||
608 | .name = DRIVER_NAME, | 608 | .name = DRIVER_NAME, |
609 | .id_table = rsxx_pci_ids, | 609 | .id_table = rsxx_pci_ids, |
610 | .probe = rsxx_pci_probe, | 610 | .probe = rsxx_pci_probe, |
611 | .remove = __devexit_p(rsxx_pci_remove), | 611 | .remove = rsxx_pci_remove, |
612 | .suspend = rsxx_pci_suspend, | 612 | .suspend = rsxx_pci_suspend, |
613 | .shutdown = rsxx_pci_shutdown, | 613 | .shutdown = rsxx_pci_shutdown, |
614 | }; | 614 | }; |