Commit f90f54b3f3c4d1c9168d5f8e97c6ac5b9ad25f5e

Authored by Bill Pemberton
Committed by Greg Kroah-Hartman
1 parent 84db00ba1e

pinctrl: remove use of __devexit

CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 16 changed files with 16 additions and 16 deletions Side-by-side Diff

drivers/pinctrl/pinctrl-bcm2835.c
... ... @@ -1042,7 +1042,7 @@
1042 1042 return 0;
1043 1043 }
1044 1044  
1045   -static int __devexit bcm2835_pinctrl_remove(struct platform_device *pdev)
  1045 +static int bcm2835_pinctrl_remove(struct platform_device *pdev)
1046 1046 {
1047 1047 struct bcm2835_pinctrl *pc = platform_get_drvdata(pdev);
1048 1048  
drivers/pinctrl/pinctrl-imx.c
... ... @@ -611,7 +611,7 @@
611 611 return 0;
612 612 }
613 613  
614   -int __devexit imx_pinctrl_remove(struct platform_device *pdev)
  614 +int imx_pinctrl_remove(struct platform_device *pdev)
615 615 {
616 616 struct imx_pinctrl *ipctl = platform_get_drvdata(pdev);
617 617  
drivers/pinctrl/pinctrl-mmp2.c
... ... @@ -691,7 +691,7 @@
691 691 return pxa3xx_pinctrl_register(pdev, &mmp2_info);
692 692 }
693 693  
694   -static int __devexit mmp2_pinmux_remove(struct platform_device *pdev)
  694 +static int mmp2_pinmux_remove(struct platform_device *pdev)
695 695 {
696 696 return pxa3xx_pinctrl_unregister(pdev);
697 697 }
drivers/pinctrl/pinctrl-mxs.c
... ... @@ -522,7 +522,7 @@
522 522 }
523 523 EXPORT_SYMBOL_GPL(mxs_pinctrl_probe);
524 524  
525   -int __devexit mxs_pinctrl_remove(struct platform_device *pdev)
  525 +int mxs_pinctrl_remove(struct platform_device *pdev)
526 526 {
527 527 struct mxs_pinctrl_data *d = platform_get_drvdata(pdev);
528 528  
drivers/pinctrl/pinctrl-pxa168.c
... ... @@ -620,7 +620,7 @@
620 620 return pxa3xx_pinctrl_register(pdev, &pxa168_info);
621 621 }
622 622  
623   -static int __devexit pxa168_pinmux_remove(struct platform_device *pdev)
  623 +static int pxa168_pinmux_remove(struct platform_device *pdev)
624 624 {
625 625 return pxa3xx_pinctrl_unregister(pdev);
626 626 }
drivers/pinctrl/pinctrl-pxa910.c
... ... @@ -976,7 +976,7 @@
976 976 return pxa3xx_pinctrl_register(pdev, &pxa910_info);
977 977 }
978 978  
979   -static int __devexit pxa910_pinmux_remove(struct platform_device *pdev)
  979 +static int pxa910_pinmux_remove(struct platform_device *pdev)
980 980 {
981 981 return pxa3xx_pinctrl_unregister(pdev);
982 982 }
drivers/pinctrl/pinctrl-single.c
... ... @@ -986,7 +986,7 @@
986 986 return ret;
987 987 }
988 988  
989   -static int __devexit pcs_remove(struct platform_device *pdev)
  989 +static int pcs_remove(struct platform_device *pdev)
990 990 {
991 991 struct pcs_device *pcs = platform_get_drvdata(pdev);
992 992  
drivers/pinctrl/pinctrl-tegra.c
... ... @@ -758,7 +758,7 @@
758 758 }
759 759 EXPORT_SYMBOL_GPL(tegra_pinctrl_probe);
760 760  
761   -int __devexit tegra_pinctrl_remove(struct platform_device *pdev)
  761 +int tegra_pinctrl_remove(struct platform_device *pdev)
762 762 {
763 763 struct tegra_pmx *pmx = platform_get_drvdata(pdev);
764 764  
drivers/pinctrl/pinctrl-u300.c
... ... @@ -1166,7 +1166,7 @@
1166 1166 return ret;
1167 1167 }
1168 1168  
1169   -static int __devexit u300_pmx_remove(struct platform_device *pdev)
  1169 +static int u300_pmx_remove(struct platform_device *pdev)
1170 1170 {
1171 1171 struct u300_pmx *upmx = platform_get_drvdata(pdev);
1172 1172  
drivers/pinctrl/spear/pinctrl-spear.c
... ... @@ -344,7 +344,7 @@
344 344 return 0;
345 345 }
346 346  
347   -int __devexit spear_pinctrl_remove(struct platform_device *pdev)
  347 +int spear_pinctrl_remove(struct platform_device *pdev)
348 348 {
349 349 struct spear_pmx *pmx = platform_get_drvdata(pdev);
350 350  
drivers/pinctrl/spear/pinctrl-spear.h
... ... @@ -138,7 +138,7 @@
138 138 void __devinit pmx_init_addr(struct spear_pinctrl_machdata *machdata, u16 reg);
139 139 int __devinit spear_pinctrl_probe(struct platform_device *pdev,
140 140 struct spear_pinctrl_machdata *machdata);
141   -int __devexit spear_pinctrl_remove(struct platform_device *pdev);
  141 +int spear_pinctrl_remove(struct platform_device *pdev);
142 142  
143 143 #define SPEAR_PIN_0_TO_101 \
144 144 PINCTRL_PIN(0, "PLGPIO0"), \
drivers/pinctrl/spear/pinctrl-spear1310.c
... ... @@ -2440,7 +2440,7 @@
2440 2440 return spear_pinctrl_probe(pdev, &spear1310_machdata);
2441 2441 }
2442 2442  
2443   -static int __devexit spear1310_pinctrl_remove(struct platform_device *pdev)
  2443 +static int spear1310_pinctrl_remove(struct platform_device *pdev)
2444 2444 {
2445 2445 return spear_pinctrl_remove(pdev);
2446 2446 }
drivers/pinctrl/spear/pinctrl-spear1340.c
... ... @@ -1993,7 +1993,7 @@
1993 1993 return spear_pinctrl_probe(pdev, &spear1340_machdata);
1994 1994 }
1995 1995  
1996   -static int __devexit spear1340_pinctrl_remove(struct platform_device *pdev)
  1996 +static int spear1340_pinctrl_remove(struct platform_device *pdev)
1997 1997 {
1998 1998 return spear_pinctrl_remove(pdev);
1999 1999 }
drivers/pinctrl/spear/pinctrl-spear300.c
... ... @@ -675,7 +675,7 @@
675 675 return 0;
676 676 }
677 677  
678   -static int __devexit spear300_pinctrl_remove(struct platform_device *pdev)
  678 +static int spear300_pinctrl_remove(struct platform_device *pdev)
679 679 {
680 680 return spear_pinctrl_remove(pdev);
681 681 }
drivers/pinctrl/spear/pinctrl-spear310.c
... ... @@ -398,7 +398,7 @@
398 398 return 0;
399 399 }
400 400  
401   -static int __devexit spear310_pinctrl_remove(struct platform_device *pdev)
  401 +static int spear310_pinctrl_remove(struct platform_device *pdev)
402 402 {
403 403 return spear_pinctrl_remove(pdev);
404 404 }
drivers/pinctrl/spear/pinctrl-spear320.c
... ... @@ -3439,7 +3439,7 @@
3439 3439 return 0;
3440 3440 }
3441 3441  
3442   -static int __devexit spear320_pinctrl_remove(struct platform_device *pdev)
  3442 +static int spear320_pinctrl_remove(struct platform_device *pdev)
3443 3443 {
3444 3444 return spear_pinctrl_remove(pdev);
3445 3445 }