From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756443AbdCGW4R (ORCPT ); Tue, 7 Mar 2017 17:56:17 -0500 Received: from mail5.windriver.com ([192.103.53.11]:46980 "EHLO mail5.wrs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751935AbdCGW4O (ORCPT ); Tue, 7 Mar 2017 17:56:14 -0500 From: Paul Gortmaker To: CC: Paul Gortmaker , Peter Rosin , Jonathan Cameron Subject: [PATCH] mux-core: make it explicitly non-modular Date: Tue, 7 Mar 2017 17:41:15 -0500 Message-ID: <20170307224115.9394-1-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 Cc: Jonathan Cameron Signed-off-by: Paul Gortmaker --- [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 #include #include -#include +#include #include #include #include @@ -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