diff options
| author | Paul Gortmaker <[email protected]> | 2016-08-23 17:19:44 -0400 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2016-08-27 13:16:12 +0200 |
| commit | a9784e56aa106959ee695de8bf7c546b9bd6ad14 (patch) | |
| tree | 2589d245d4de6b84ba8cb5aae7f898e1f4a2af40 | |
| parent | 37e70b6a35e73d884096a2dbc976fae454829533 (diff) | |
pinctrl: sirf: make core support explicitly non-modular
The Makefile currently controlling compilation of this code is:
drivers/pinctrl/sirf/pinctrl-sirf.o
--> drivers/pinctrl/sirf/Makefile:obj-y += pinctrl-sirf.o
...meaning that it currently is not being built as a module by anyone.
Lets remove the couple traces of modular infrastructure use, so that
when reading the driver there is no doubt it is builtin-only.
We also delete the MODULE_LICENSE tag etc. since all that information
was (or is now) contained at the top of the file in the comments.
Cc: Linus Walleij <[email protected]>
Cc: Rongjun Ying <[email protected]>
Cc: Yuping Luo <[email protected]>
Cc: Barry Song <[email protected]>
Cc: [email protected]
Signed-off-by: Paul Gortmaker <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
| -rw-r--r-- | drivers/pinctrl/sirf/pinctrl-sirf.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/pinctrl/sirf/pinctrl-sirf.c b/drivers/pinctrl/sirf/pinctrl-sirf.c index 762c0c9c1278..0df72be60704 100644 --- a/drivers/pinctrl/sirf/pinctrl-sirf.c +++ b/drivers/pinctrl/sirf/pinctrl-sirf.c @@ -1,6 +1,11 @@ /* * pinmux driver for CSR SiRFprimaII * + * Authors: + * Rongjun Ying <[email protected]> + * Yuping Luo <[email protected]> + * Barry Song <[email protected]> + * * Copyright (c) 2011 - 2014 Cambridge Silicon Radio Limited, a CSR plc group * company. * @@ -8,7 +13,6 @@ */ #include <linux/init.h> -#include <linux/module.h> #include <linux/irq.h> #include <linux/platform_device.h> #include <linux/io.h> @@ -884,9 +888,3 @@ static int __init sirfsoc_gpio_init(void) return sirfsoc_gpio_probe(np); } subsys_initcall(sirfsoc_gpio_init); - -MODULE_AUTHOR("Rongjun Ying <[email protected]>"); -MODULE_AUTHOR("Yuping Luo <[email protected]>"); -MODULE_AUTHOR("Barry Song <[email protected]>"); -MODULE_DESCRIPTION("SIRFSOC pin control driver"); -MODULE_LICENSE("GPL"); |