diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-01-04 12:44:10 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-01-27 08:59:31 -0500 |
commit | cc301fd1fcf28f92b122f7f6105db9d7c182cccc (patch) | |
tree | f5b6a4098a29f24546c75eca281e21aaa3133746 | |
parent | aceb16dc2da58341bda939defaff0682fac13747 (diff) |
pinctrl: mediatek: mt8* make driver explicitly non-modular
The Kconfig for these drivers are currently:
config PINCTRL_MT8127
bool "Mediatek MT8127 pin control" if COMPILE_TEST && !MACH_MT8127
config PINCTRL_MT8135
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
config PINCTRL_MT8173
bool "Mediatek MT8173 pin control"
...meaning that they are currently 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.
A recent commit moved these from module_init to arch_initcall already, so
the init ordering remains untouched with this commit.
We also delete the MODULE_LICENSE tag etc. since all that information
is already contained at the top of the file in the comments.
Also note that MODULE_DEVICE_TABLE is a no-op for non-modular code.
Cc: Daniel Kurtz <djkurtz@chromium.org>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Hongzhou Yang <hongzhou.yang@mediatek.com>
Cc: Yingjoe Chen <yingjoe.chen@mediatek.com>
Cc: linux-gpio@vger.kernel.org
Cc: linux-mediatek@lists.infradead.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/pinctrl/mediatek/pinctrl-mt8127.c | 8 | ||||
-rw-r--r-- | drivers/pinctrl/mediatek/pinctrl-mt8135.c | 8 | ||||
-rw-r--r-- | drivers/pinctrl/mediatek/pinctrl-mt8173.c | 8 |
3 files changed, 3 insertions, 21 deletions
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8127.c b/drivers/pinctrl/mediatek/pinctrl-mt8127.c index 98e0bebfdf92..d76491574841 100644 --- a/drivers/pinctrl/mediatek/pinctrl-mt8127.c +++ b/drivers/pinctrl/mediatek/pinctrl-mt8127.c | |||
@@ -13,7 +13,7 @@ | |||
13 | * GNU General Public License for more details. | 13 | * GNU General Public License for more details. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <linux/module.h> | 16 | #include <linux/init.h> |
17 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
18 | #include <linux/of.h> | 18 | #include <linux/of.h> |
19 | #include <linux/of_device.h> | 19 | #include <linux/of_device.h> |
@@ -336,7 +336,6 @@ static const struct of_device_id mt8127_pctrl_match[] = { | |||
336 | { .compatible = "mediatek,mt8127-pinctrl", }, | 336 | { .compatible = "mediatek,mt8127-pinctrl", }, |
337 | { } | 337 | { } |
338 | }; | 338 | }; |
339 | MODULE_DEVICE_TABLE(of, mt8127_pctrl_match); | ||
340 | 339 | ||
341 | static struct platform_driver mtk_pinctrl_driver = { | 340 | static struct platform_driver mtk_pinctrl_driver = { |
342 | .probe = mt8127_pinctrl_probe, | 341 | .probe = mt8127_pinctrl_probe, |
@@ -350,9 +349,4 @@ static int __init mtk_pinctrl_init(void) | |||
350 | { | 349 | { |
351 | return platform_driver_register(&mtk_pinctrl_driver); | 350 | return platform_driver_register(&mtk_pinctrl_driver); |
352 | } | 351 | } |
353 | |||
354 | arch_initcall(mtk_pinctrl_init); | 352 | arch_initcall(mtk_pinctrl_init); |
355 | |||
356 | MODULE_LICENSE("GPL v2"); | ||
357 | MODULE_DESCRIPTION("MediaTek MT8127 Pinctrl Driver"); | ||
358 | MODULE_AUTHOR("Yingjoe Chen <yingjoe.chen@mediatek.com>"); | ||
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8135.c b/drivers/pinctrl/mediatek/pinctrl-mt8135.c index 1c153b860f36..d8c645f16f21 100644 --- a/drivers/pinctrl/mediatek/pinctrl-mt8135.c +++ b/drivers/pinctrl/mediatek/pinctrl-mt8135.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * GNU General Public License for more details. | 12 | * GNU General Public License for more details. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <linux/module.h> | 15 | #include <linux/init.h> |
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/of.h> | 17 | #include <linux/of.h> |
18 | #include <linux/of_device.h> | 18 | #include <linux/of_device.h> |
@@ -351,7 +351,6 @@ static const struct of_device_id mt8135_pctrl_match[] = { | |||
351 | }, | 351 | }, |
352 | { } | 352 | { } |
353 | }; | 353 | }; |
354 | MODULE_DEVICE_TABLE(of, mt8135_pctrl_match); | ||
355 | 354 | ||
356 | static struct platform_driver mtk_pinctrl_driver = { | 355 | static struct platform_driver mtk_pinctrl_driver = { |
357 | .probe = mt8135_pinctrl_probe, | 356 | .probe = mt8135_pinctrl_probe, |
@@ -365,9 +364,4 @@ static int __init mtk_pinctrl_init(void) | |||
365 | { | 364 | { |
366 | return platform_driver_register(&mtk_pinctrl_driver); | 365 | return platform_driver_register(&mtk_pinctrl_driver); |
367 | } | 366 | } |
368 | |||
369 | arch_initcall(mtk_pinctrl_init); | 367 | arch_initcall(mtk_pinctrl_init); |
370 | |||
371 | MODULE_LICENSE("GPL"); | ||
372 | MODULE_DESCRIPTION("MediaTek Pinctrl Driver"); | ||
373 | MODULE_AUTHOR("Hongzhou Yang <hongzhou.yang@mediatek.com>"); | ||
diff --git a/drivers/pinctrl/mediatek/pinctrl-mt8173.c b/drivers/pinctrl/mediatek/pinctrl-mt8173.c index a62514eb2129..8bfd427b9135 100644 --- a/drivers/pinctrl/mediatek/pinctrl-mt8173.c +++ b/drivers/pinctrl/mediatek/pinctrl-mt8173.c | |||
@@ -12,7 +12,7 @@ | |||
12 | * GNU General Public License for more details. | 12 | * GNU General Public License for more details. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <linux/module.h> | 15 | #include <linux/init.h> |
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/of.h> | 17 | #include <linux/of.h> |
18 | #include <linux/of_device.h> | 18 | #include <linux/of_device.h> |
@@ -378,7 +378,6 @@ static const struct of_device_id mt8173_pctrl_match[] = { | |||
378 | }, | 378 | }, |
379 | { } | 379 | { } |
380 | }; | 380 | }; |
381 | MODULE_DEVICE_TABLE(of, mt8173_pctrl_match); | ||
382 | 381 | ||
383 | static struct platform_driver mtk_pinctrl_driver = { | 382 | static struct platform_driver mtk_pinctrl_driver = { |
384 | .probe = mt8173_pinctrl_probe, | 383 | .probe = mt8173_pinctrl_probe, |
@@ -393,9 +392,4 @@ static int __init mtk_pinctrl_init(void) | |||
393 | { | 392 | { |
394 | return platform_driver_register(&mtk_pinctrl_driver); | 393 | return platform_driver_register(&mtk_pinctrl_driver); |
395 | } | 394 | } |
396 | |||
397 | arch_initcall(mtk_pinctrl_init); | 395 | arch_initcall(mtk_pinctrl_init); |
398 | |||
399 | MODULE_LICENSE("GPL v2"); | ||
400 | MODULE_DESCRIPTION("MediaTek Pinctrl Driver"); | ||
401 | MODULE_AUTHOR("Hongzhou Yang <hongzhou.yang@mediatek.com>"); | ||