diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 16:10:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:02 -0500 |
commit | 150632b09aadf1996f5cb6c0c2620d63a01fe2de (patch) | |
tree | 181a645f6158d7c9e7e8d63c02c1bce34b50e360 /drivers/pinctrl/pinctrl-at91.c | |
parent | 5a167f4543e45d45c5672a5cd6cb8ba5ddf4f3ea (diff) |
Drivers: pinctrl: 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,
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: Linus Walleij <linus.walleij@linaro.org>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Barry Song <baohua.song@csr.com>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-at91.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91.c | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index c5e757157183..5e224974125d 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c | |||
@@ -792,8 +792,8 @@ static struct pinctrl_desc at91_pinctrl_desc = { | |||
792 | 792 | ||
793 | static const char *gpio_compat = "atmel,at91rm9200-gpio"; | 793 | static const char *gpio_compat = "atmel,at91rm9200-gpio"; |
794 | 794 | ||
795 | static void __devinit at91_pinctrl_child_count(struct at91_pinctrl *info, | 795 | static void at91_pinctrl_child_count(struct at91_pinctrl *info, |
796 | struct device_node *np) | 796 | struct device_node *np) |
797 | { | 797 | { |
798 | struct device_node *child; | 798 | struct device_node *child; |
799 | 799 | ||
@@ -807,8 +807,8 @@ static void __devinit at91_pinctrl_child_count(struct at91_pinctrl *info, | |||
807 | } | 807 | } |
808 | } | 808 | } |
809 | 809 | ||
810 | static int __devinit at91_pinctrl_mux_mask(struct at91_pinctrl *info, | 810 | static int at91_pinctrl_mux_mask(struct at91_pinctrl *info, |
811 | struct device_node *np) | 811 | struct device_node *np) |
812 | { | 812 | { |
813 | int ret = 0; | 813 | int ret = 0; |
814 | int size; | 814 | int size; |
@@ -840,10 +840,9 @@ static int __devinit at91_pinctrl_mux_mask(struct at91_pinctrl *info, | |||
840 | return ret; | 840 | return ret; |
841 | } | 841 | } |
842 | 842 | ||
843 | static int __devinit at91_pinctrl_parse_groups(struct device_node *np, | 843 | static int at91_pinctrl_parse_groups(struct device_node *np, |
844 | struct at91_pin_group *grp, | 844 | struct at91_pin_group *grp, |
845 | struct at91_pinctrl *info, | 845 | struct at91_pinctrl *info, u32 index) |
846 | u32 index) | ||
847 | { | 846 | { |
848 | struct at91_pmx_pin *pin; | 847 | struct at91_pmx_pin *pin; |
849 | int size; | 848 | int size; |
@@ -889,8 +888,8 @@ static int __devinit at91_pinctrl_parse_groups(struct device_node *np, | |||
889 | return 0; | 888 | return 0; |
890 | } | 889 | } |
891 | 890 | ||
892 | static int __devinit at91_pinctrl_parse_functions(struct device_node *np, | 891 | static int at91_pinctrl_parse_functions(struct device_node *np, |
893 | struct at91_pinctrl *info, u32 index) | 892 | struct at91_pinctrl *info, u32 index) |
894 | { | 893 | { |
895 | struct device_node *child; | 894 | struct device_node *child; |
896 | struct at91_pmx_func *func; | 895 | struct at91_pmx_func *func; |
@@ -926,14 +925,14 @@ static int __devinit at91_pinctrl_parse_functions(struct device_node *np, | |||
926 | return 0; | 925 | return 0; |
927 | } | 926 | } |
928 | 927 | ||
929 | static struct of_device_id at91_pinctrl_of_match[] __devinitdata = { | 928 | static struct of_device_id at91_pinctrl_of_match[] = { |
930 | { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops }, | 929 | { .compatible = "atmel,at91sam9x5-pinctrl", .data = &at91sam9x5_ops }, |
931 | { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops }, | 930 | { .compatible = "atmel,at91rm9200-pinctrl", .data = &at91rm9200_ops }, |
932 | { /* sentinel */ } | 931 | { /* sentinel */ } |
933 | }; | 932 | }; |
934 | 933 | ||
935 | static int __devinit at91_pinctrl_probe_dt(struct platform_device *pdev, | 934 | static int at91_pinctrl_probe_dt(struct platform_device *pdev, |
936 | struct at91_pinctrl *info) | 935 | struct at91_pinctrl *info) |
937 | { | 936 | { |
938 | int ret = 0; | 937 | int ret = 0; |
939 | int i, j; | 938 | int i, j; |
@@ -999,7 +998,7 @@ static int __devinit at91_pinctrl_probe_dt(struct platform_device *pdev, | |||
999 | return 0; | 998 | return 0; |
1000 | } | 999 | } |
1001 | 1000 | ||
1002 | static int __devinit at91_pinctrl_probe(struct platform_device *pdev) | 1001 | static int at91_pinctrl_probe(struct platform_device *pdev) |
1003 | { | 1002 | { |
1004 | struct at91_pinctrl *info; | 1003 | struct at91_pinctrl *info; |
1005 | struct pinctrl_pin_desc *pdesc; | 1004 | struct pinctrl_pin_desc *pdesc; |
@@ -1063,7 +1062,7 @@ err: | |||
1063 | return ret; | 1062 | return ret; |
1064 | } | 1063 | } |
1065 | 1064 | ||
1066 | static int __devexit at91_pinctrl_remove(struct platform_device *pdev) | 1065 | static int at91_pinctrl_remove(struct platform_device *pdev) |
1067 | { | 1066 | { |
1068 | struct at91_pinctrl *info = platform_get_drvdata(pdev); | 1067 | struct at91_pinctrl *info = platform_get_drvdata(pdev); |
1069 | 1068 | ||
@@ -1443,7 +1442,7 @@ static struct gpio_chip at91_gpio_template = { | |||
1443 | .ngpio = MAX_NB_GPIO_PER_BANK, | 1442 | .ngpio = MAX_NB_GPIO_PER_BANK, |
1444 | }; | 1443 | }; |
1445 | 1444 | ||
1446 | static void __devinit at91_gpio_probe_fixup(void) | 1445 | static void at91_gpio_probe_fixup(void) |
1447 | { | 1446 | { |
1448 | unsigned i; | 1447 | unsigned i; |
1449 | struct at91_gpio_chip *at91_gpio, *last = NULL; | 1448 | struct at91_gpio_chip *at91_gpio, *last = NULL; |
@@ -1461,13 +1460,13 @@ static void __devinit at91_gpio_probe_fixup(void) | |||
1461 | } | 1460 | } |
1462 | } | 1461 | } |
1463 | 1462 | ||
1464 | static struct of_device_id at91_gpio_of_match[] __devinitdata = { | 1463 | static struct of_device_id at91_gpio_of_match[] = { |
1465 | { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, }, | 1464 | { .compatible = "atmel,at91sam9x5-gpio", .data = &at91sam9x5_ops, }, |
1466 | { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops }, | 1465 | { .compatible = "atmel,at91rm9200-gpio", .data = &at91rm9200_ops }, |
1467 | { /* sentinel */ } | 1466 | { /* sentinel */ } |
1468 | }; | 1467 | }; |
1469 | 1468 | ||
1470 | static int __devinit at91_gpio_probe(struct platform_device *pdev) | 1469 | static int at91_gpio_probe(struct platform_device *pdev) |
1471 | { | 1470 | { |
1472 | struct device_node *np = pdev->dev.of_node; | 1471 | struct device_node *np = pdev->dev.of_node; |
1473 | struct resource *res; | 1472 | struct resource *res; |
@@ -1609,7 +1608,7 @@ static struct platform_driver at91_pinctrl_driver = { | |||
1609 | .of_match_table = of_match_ptr(at91_pinctrl_of_match), | 1608 | .of_match_table = of_match_ptr(at91_pinctrl_of_match), |
1610 | }, | 1609 | }, |
1611 | .probe = at91_pinctrl_probe, | 1610 | .probe = at91_pinctrl_probe, |
1612 | .remove = __devexit_p(at91_pinctrl_remove), | 1611 | .remove = at91_pinctrl_remove, |
1613 | }; | 1612 | }; |
1614 | 1613 | ||
1615 | static int __init at91_pinctrl_init(void) | 1614 | static int __init at91_pinctrl_init(void) |