Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp6514549imu; Sun, 2 Dec 2018 20:28:48 -0800 (PST) X-Google-Smtp-Source: AFSGD/VQ6edZMk/VACEhCTaIm4G7lmjkVY4Oc0/GjElo0KqA8Jaw9VgAsQPmwWW0EvNGH6HOEaXO X-Received: by 2002:a17:902:be0c:: with SMTP id r12mr14050275pls.299.1543811328920; Sun, 02 Dec 2018 20:28:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1543811328; cv=none; d=google.com; s=arc-20160816; b=XqbHj+pBM/YJjDEnT68nmm8bqbS8YFVClRKWpFp7AoaDqaxvAROLlEmh+M0WCCDfd8 Om293+4/4jg0MBzn7Hph7coHNSnvJ3rsk87M/2FLjaAFQbE2dQMRMmTha+5Ie3ilLb7N rcsc3rf+j5WeWRggr493fb+/9TN8BmOblGxoic0BArwEYE9Ibf6TlyBYCSJtgMrYQyQO ejdP6YKJ51uOKFtbdhfugKileZ9kFA56cbCjgYmLgjYAZF5L5UYilqqFyeE6LSIdkfTc N9ZNq3EBlEJx5qtIIZZSP62n6aUlIGlSbZqkC0TQ9O0ElieFZrwHERBPRMRlewr4JwcS 2DLA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from; bh=UTcK0Tdz3/MR2gcrzUfw/PeRDB/NhRN/NgkIKZCnbIY=; b=f7V50MWDuJnNRZgJrUTvW3qT2CeYzBMJENLIIx4ZDHTGWM+c2lqBRzqfZ98JtsKAf9 71d+d0r+UshhZTHk/RiVL8cq4E8oWtd7YzdsMDDZKB3UgkiZ5PeOsWQwr785VuNqpcjG 8hFyDgCEuOfHvpD6K5kgzUrcveTiUBkVZae6pahNhEBXTUMvoMgisGoeWhBOh8tqfoVR wI+Vs33eg8alL9/1IWXYAAMvZGhjY7ScC09Eduy+OYsCFWZsaGmKohRyJvPqbKcYsQPN GBmpIrvUJZVZc2xVsW13xRWXD7P0RfsV7icUOx7do8UMxv5fg3Xkr9sEv04Y0pWAmG3P U3Yg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w5si4939850plz.419.2018.12.02.20.28.34; Sun, 02 Dec 2018 20:28:48 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726051AbeLCE0e (ORCPT + 99 others); Sun, 2 Dec 2018 23:26:34 -0500 Received: from mail1.windriver.com ([147.11.146.13]:60555 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725811AbeLCE0e (ORCPT ); Sun, 2 Dec 2018 23:26:34 -0500 Received: from ALA-HCA.corp.ad.wrs.com ([147.11.189.40]) by mail1.windriver.com (8.15.2/8.15.1) with ESMTPS id wB34QMDp015536 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Sun, 2 Dec 2018 20:26:23 -0800 (PST) Received: from yow-cube1.wrs.com (128.224.56.98) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.408.0; Sun, 2 Dec 2018 20:26:22 -0800 From: Paul Gortmaker To: Lee Jones CC: , Paul Gortmaker , Arnd Bergmann , Dong Aisheng Subject: [PATCH 13/22] mfd: syscon: Make it explicitly non-modular Date: Sun, 2 Dec 2018 23:23:20 -0500 Message-ID: <1543811009-15112-14-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1543811009-15112-1-git-send-email-paul.gortmaker@windriver.com> References: <1543811009-15112-1-git-send-email-paul.gortmaker@windriver.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Kconfig currently controlling compilation of this code is: drivers/mfd/Kconfig:config MFD_SYSCON drivers/mfd/Kconfig: bool "System Controller Register R/W Based on Regmap" ...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. Since module_init was not in use by this code, the init ordering remains unchanged 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. Cc: Lee Jones Cc: Arnd Bergmann Cc: Dong Aisheng Signed-off-by: Paul Gortmaker --- drivers/mfd/syscon.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index b6d05cd934e6..0ecdffb3d967 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include #include @@ -272,13 +272,3 @@ static int __init syscon_init(void) return platform_driver_register(&syscon_driver); } postcore_initcall(syscon_init); - -static void __exit syscon_exit(void) -{ - platform_driver_unregister(&syscon_driver); -} -module_exit(syscon_exit); - -MODULE_AUTHOR("Dong Aisheng "); -MODULE_DESCRIPTION("System Control driver"); -MODULE_LICENSE("GPL v2"); -- 2.7.4