diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 16:25:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:04 -0500 |
commit | 6c44512d06d3f6afcead304f051f4a06ed9be2cd (patch) | |
tree | a6a5bcddd316b57a5839ea50737d2f510867789e /drivers/atm/he.c | |
parent | 082a2004db27e16ee9a5b1234e6ab219ea29d693 (diff) |
Drivers: atm: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
markings need to be removed.
This change removes the use of __devinit, __devexit_p, __devinitdata,
__devinitconst, and __devexit from these drivers.
Based on patches originally written by Bill Pemberton, but redone by me
in order to handle some of the coding style issues better, by hand.
Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/atm/he.c')
-rw-r--r-- | drivers/atm/he.c | 36 |
1 files changed, 13 insertions, 23 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index b182c2f7d777..72b6960fa95f 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c | |||
@@ -349,8 +349,8 @@ __find_vcc(struct he_dev *he_dev, unsigned cid) | |||
349 | return NULL; | 349 | return NULL; |
350 | } | 350 | } |
351 | 351 | ||
352 | static int __devinit | 352 | static int he_init_one(struct pci_dev *pci_dev, |
353 | he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent) | 353 | const struct pci_device_id *pci_ent) |
354 | { | 354 | { |
355 | struct atm_dev *atm_dev = NULL; | 355 | struct atm_dev *atm_dev = NULL; |
356 | struct he_dev *he_dev = NULL; | 356 | struct he_dev *he_dev = NULL; |
@@ -406,8 +406,7 @@ init_one_failure: | |||
406 | return err; | 406 | return err; |
407 | } | 407 | } |
408 | 408 | ||
409 | static void __devexit | 409 | static void he_remove_one(struct pci_dev *pci_dev) |
410 | he_remove_one (struct pci_dev *pci_dev) | ||
411 | { | 410 | { |
412 | struct atm_dev *atm_dev; | 411 | struct atm_dev *atm_dev; |
413 | struct he_dev *he_dev; | 412 | struct he_dev *he_dev; |
@@ -445,8 +444,7 @@ rate_to_atmf(unsigned rate) /* cps to atm forum format */ | |||
445 | return (NONZERO | (exp << 9) | (rate & 0x1ff)); | 444 | return (NONZERO | (exp << 9) | (rate & 0x1ff)); |
446 | } | 445 | } |
447 | 446 | ||
448 | static void __devinit | 447 | static void he_init_rx_lbfp0(struct he_dev *he_dev) |
449 | he_init_rx_lbfp0(struct he_dev *he_dev) | ||
450 | { | 448 | { |
451 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; | 449 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; |
452 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; | 450 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; |
@@ -476,8 +474,7 @@ he_init_rx_lbfp0(struct he_dev *he_dev) | |||
476 | he_writel(he_dev, he_dev->r0_numbuffs, RLBF0_C); | 474 | he_writel(he_dev, he_dev->r0_numbuffs, RLBF0_C); |
477 | } | 475 | } |
478 | 476 | ||
479 | static void __devinit | 477 | static void he_init_rx_lbfp1(struct he_dev *he_dev) |
480 | he_init_rx_lbfp1(struct he_dev *he_dev) | ||
481 | { | 478 | { |
482 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; | 479 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; |
483 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; | 480 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; |
@@ -507,8 +504,7 @@ he_init_rx_lbfp1(struct he_dev *he_dev) | |||
507 | he_writel(he_dev, he_dev->r1_numbuffs, RLBF1_C); | 504 | he_writel(he_dev, he_dev->r1_numbuffs, RLBF1_C); |
508 | } | 505 | } |
509 | 506 | ||
510 | static void __devinit | 507 | static void he_init_tx_lbfp(struct he_dev *he_dev) |
511 | he_init_tx_lbfp(struct he_dev *he_dev) | ||
512 | { | 508 | { |
513 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; | 509 | unsigned i, lbm_offset, lbufd_index, lbuf_addr, lbuf_count; |
514 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; | 510 | unsigned lbufs_per_row = he_dev->cells_per_row / he_dev->cells_per_lbuf; |
@@ -537,8 +533,7 @@ he_init_tx_lbfp(struct he_dev *he_dev) | |||
537 | he_writel(he_dev, lbufd_index - 1, TLBF_T); | 533 | he_writel(he_dev, lbufd_index - 1, TLBF_T); |
538 | } | 534 | } |
539 | 535 | ||
540 | static int __devinit | 536 | static int he_init_tpdrq(struct he_dev *he_dev) |
541 | he_init_tpdrq(struct he_dev *he_dev) | ||
542 | { | 537 | { |
543 | he_dev->tpdrq_base = pci_alloc_consistent(he_dev->pci_dev, | 538 | he_dev->tpdrq_base = pci_alloc_consistent(he_dev->pci_dev, |
544 | CONFIG_TPDRQ_SIZE * sizeof(struct he_tpdrq), &he_dev->tpdrq_phys); | 539 | CONFIG_TPDRQ_SIZE * sizeof(struct he_tpdrq), &he_dev->tpdrq_phys); |
@@ -559,8 +554,7 @@ he_init_tpdrq(struct he_dev *he_dev) | |||
559 | return 0; | 554 | return 0; |
560 | } | 555 | } |
561 | 556 | ||
562 | static void __devinit | 557 | static void he_init_cs_block(struct he_dev *he_dev) |
563 | he_init_cs_block(struct he_dev *he_dev) | ||
564 | { | 558 | { |
565 | unsigned clock, rate, delta; | 559 | unsigned clock, rate, delta; |
566 | int reg; | 560 | int reg; |
@@ -655,8 +649,7 @@ he_init_cs_block(struct he_dev *he_dev) | |||
655 | 649 | ||
656 | } | 650 | } |
657 | 651 | ||
658 | static int __devinit | 652 | static int he_init_cs_block_rcm(struct he_dev *he_dev) |
659 | he_init_cs_block_rcm(struct he_dev *he_dev) | ||
660 | { | 653 | { |
661 | unsigned (*rategrid)[16][16]; | 654 | unsigned (*rategrid)[16][16]; |
662 | unsigned rate, delta; | 655 | unsigned rate, delta; |
@@ -776,8 +769,7 @@ he_init_cs_block_rcm(struct he_dev *he_dev) | |||
776 | return 0; | 769 | return 0; |
777 | } | 770 | } |
778 | 771 | ||
779 | static int __devinit | 772 | static int he_init_group(struct he_dev *he_dev, int group) |
780 | he_init_group(struct he_dev *he_dev, int group) | ||
781 | { | 773 | { |
782 | struct he_buff *heb, *next; | 774 | struct he_buff *heb, *next; |
783 | dma_addr_t mapping; | 775 | dma_addr_t mapping; |
@@ -915,8 +907,7 @@ out_free_rbpl_table: | |||
915 | return -ENOMEM; | 907 | return -ENOMEM; |
916 | } | 908 | } |
917 | 909 | ||
918 | static int __devinit | 910 | static int he_init_irq(struct he_dev *he_dev) |
919 | he_init_irq(struct he_dev *he_dev) | ||
920 | { | 911 | { |
921 | int i; | 912 | int i; |
922 | 913 | ||
@@ -978,8 +969,7 @@ he_init_irq(struct he_dev *he_dev) | |||
978 | return 0; | 969 | return 0; |
979 | } | 970 | } |
980 | 971 | ||
981 | static int __devinit | 972 | static int he_start(struct atm_dev *dev) |
982 | he_start(struct atm_dev *dev) | ||
983 | { | 973 | { |
984 | struct he_dev *he_dev; | 974 | struct he_dev *he_dev; |
985 | struct pci_dev *pci_dev; | 975 | struct pci_dev *pci_dev; |
@@ -2879,7 +2869,7 @@ MODULE_DEVICE_TABLE(pci, he_pci_tbl); | |||
2879 | static struct pci_driver he_driver = { | 2869 | static struct pci_driver he_driver = { |
2880 | .name = "he", | 2870 | .name = "he", |
2881 | .probe = he_init_one, | 2871 | .probe = he_init_one, |
2882 | .remove = __devexit_p(he_remove_one), | 2872 | .remove = he_remove_one, |
2883 | .id_table = he_pci_tbl, | 2873 | .id_table = he_pci_tbl, |
2884 | }; | 2874 | }; |
2885 | 2875 | ||