linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mux-core: make it explicitly non-modular
@ 2017-03-07 22:41 Paul Gortmaker
  2017-03-08  9:38 ` Peter Rosin
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Gortmaker @ 2017-03-07 22:41 UTC (permalink / raw)
  To: linux-kernel; +Cc: Paul Gortmaker, Peter Rosin, Jonathan Cameron

The Kconfig currently controlling compilation of this code is:

drivers/mux/Kconfig:menuconfig MULTIPLEXER
drivers/mux/Kconfig:    bool "Multiplexer subsystem"

...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.

Hence we delete the MODULE_LICENSE tag etc. since all that information
is already contained at the top of the file in the comments.

Cc: Peter Rosin <peda@axentia.se>
Cc: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---

[feel free to fold this change into the original addition commit if
 you happen to be rebasing for some other reason... ]

 drivers/mux/mux-core.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/mux/mux-core.c b/drivers/mux/mux-core.c
index 46088a0f9677..7b4af6370e37 100644
--- a/drivers/mux/mux-core.c
+++ b/drivers/mux/mux-core.c
@@ -15,7 +15,7 @@
 #include <linux/device.h>
 #include <linux/err.h>
 #include <linux/idr.h>
-#include <linux/module.h>
+#include <linux/init.h>
 #include <linux/mux.h>
 #include <linux/of.h>
 #include <linux/of_platform.h>
@@ -408,7 +408,3 @@ void devm_mux_control_put(struct device *dev, struct mux_control *mux)
 EXPORT_SYMBOL_GPL(devm_mux_control_put);
 
 subsys_initcall(mux_init);
-
-MODULE_DESCRIPTION("Multiplexer subsystem");
-MODULE_AUTHOR("Peter Rosin <peda@axentia.se");
-MODULE_LICENSE("GPL v2");
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-09 22:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 22:41 [PATCH] mux-core: make it explicitly non-modular Paul Gortmaker
2017-03-08  9:38 ` Peter Rosin
2017-03-08 14:38   ` Paul Gortmaker
2017-03-08 15:32     ` Peter Rosin
2017-03-09  0:32       ` Paul Gortmaker
2017-03-09  9:39         ` Peter Rosin
2017-03-09 12:01           ` Peter Rosin
2017-03-09 22:31             ` Paul Gortmaker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).