diff options
| author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-06-06 22:43:08 -0400 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2016-06-13 02:40:14 -0400 |
| commit | f703851af072b153abc928917f2ec35d4d70a851 (patch) | |
| tree | a117e65df9efab7bdeaa2873ebef21736e4dd937 /drivers/pinctrl/pinctrl-at91-pio4.c | |
| parent | 546c6d79301f7070cd9454541322298aee296e2c (diff) | |
pinctrl: at91-pio4: make it explicitly non-modular
The Kconfig currently controlling compilation of this code is:
drivers/pinctrl/Kconfig:config PINCTRL_AT91PIO4
drivers/pinctrl/Kconfig: bool "AT91 PIO4 pinctrl driver"
...meaning that it currently is not being built as a module by anyone.
Lets remove the modular code that is essentially orphaned, so that
when reading the driver there is no doubt it is builtin-only.
We explicitly disallow a driver unbind, since that doesn't have a
sensible use case anyway, and it allows us to drop the ".remove"
code for non-modular drivers.
Since module_platform_driver() uses the same init level priority as
builtin_platform_driver() the init ordering remains unchanged with
this commit.
Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
We also delete the MODULE_LICENSE tag etc. since all that information
is already contained at the top of the file in the comments.
Cc: linux-gpio@vger.kernel.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-at91-pio4.c')
| -rw-r--r-- | drivers/pinctrl/pinctrl-at91-pio4.c | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/drivers/pinctrl/pinctrl-at91-pio4.c b/drivers/pinctrl/pinctrl-at91-pio4.c index 22c6ad0dd573..28bbc1bb9e6c 100644 --- a/drivers/pinctrl/pinctrl-at91-pio4.c +++ b/drivers/pinctrl/pinctrl-at91-pio4.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | #include <linux/gpio.h> | 20 | #include <linux/gpio.h> |
| 21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
| 23 | #include <linux/module.h> | 23 | #include <linux/init.h> |
| 24 | #include <linux/of.h> | 24 | #include <linux/of.h> |
| 25 | #include <linux/platform_device.h> | 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/pinctrl/pinconf.h> | 26 | #include <linux/pinctrl/pinconf.h> |
| @@ -879,7 +879,6 @@ static const struct of_device_id atmel_pctrl_of_match[] = { | |||
| 879 | /* sentinel */ | 879 | /* sentinel */ |
| 880 | } | 880 | } |
| 881 | }; | 881 | }; |
| 882 | MODULE_DEVICE_TABLE(of, atmel_pctrl_of_match); | ||
| 883 | 882 | ||
| 884 | static int atmel_pinctrl_probe(struct platform_device *pdev) | 883 | static int atmel_pinctrl_probe(struct platform_device *pdev) |
| 885 | { | 884 | { |
| @@ -1074,28 +1073,13 @@ clk_prepare_enable_error: | |||
| 1074 | return ret; | 1073 | return ret; |
| 1075 | } | 1074 | } |
| 1076 | 1075 | ||
| 1077 | static int atmel_pinctrl_remove(struct platform_device *pdev) | ||
| 1078 | { | ||
| 1079 | struct atmel_pioctrl *atmel_pioctrl = platform_get_drvdata(pdev); | ||
| 1080 | |||
| 1081 | irq_domain_remove(atmel_pioctrl->irq_domain); | ||
| 1082 | clk_disable_unprepare(atmel_pioctrl->clk); | ||
| 1083 | gpiochip_remove(atmel_pioctrl->gpio_chip); | ||
| 1084 | |||
| 1085 | return 0; | ||
| 1086 | } | ||
| 1087 | |||
| 1088 | static struct platform_driver atmel_pinctrl_driver = { | 1076 | static struct platform_driver atmel_pinctrl_driver = { |
| 1089 | .driver = { | 1077 | .driver = { |
| 1090 | .name = "pinctrl-at91-pio4", | 1078 | .name = "pinctrl-at91-pio4", |
| 1091 | .of_match_table = atmel_pctrl_of_match, | 1079 | .of_match_table = atmel_pctrl_of_match, |
| 1092 | .pm = &atmel_pctrl_pm_ops, | 1080 | .pm = &atmel_pctrl_pm_ops, |
| 1081 | .suppress_bind_attrs = true, | ||
| 1093 | }, | 1082 | }, |
| 1094 | .probe = atmel_pinctrl_probe, | 1083 | .probe = atmel_pinctrl_probe, |
| 1095 | .remove = atmel_pinctrl_remove, | ||
| 1096 | }; | 1084 | }; |
| 1097 | module_platform_driver(atmel_pinctrl_driver); | 1085 | builtin_platform_driver(atmel_pinctrl_driver); |
| 1098 | |||
| 1099 | MODULE_AUTHOR(Ludovic Desroches <ludovic.desroches@atmel.com>); | ||
| 1100 | MODULE_DESCRIPTION("Atmel PIO4 pinctrl driver"); | ||
| 1101 | MODULE_LICENSE("GPL v2"); | ||
