Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp991933imu; Fri, 7 Dec 2018 12:15:10 -0800 (PST) X-Google-Smtp-Source: AFSGD/XRVtEB0D+ImtgPeK7bzIpdDw/bhzYmhitxWiuzOUSqixlEgkz23a99Q/HevjyOF+oXtiUX X-Received: by 2002:a63:c42:: with SMTP id 2mr3182472pgm.372.1544213710684; Fri, 07 Dec 2018 12:15:10 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1544213710; cv=none; d=google.com; s=arc-20160816; b=oMEFn0mY41oBlClQ/UBM5SZH9RIRmUkC6f+I7yxPM7Acittw57Av1Q6IxthUczk6UI ptuJhivT+L/7ljaou+7AyksmMwix3Q2hJWaQG7sY3LEtbOM/Pafm7/+o6t/kqYb/h2sR Cc5pHyoAMu9JGXg/Re8xp09ReAIYJ5PgjYjigsu8s1tdiLnotlZhtgWzLO+gdGX1Mara fsD5eUkWRcZGEfJqAkGEKt2V6okfkP2jVgVae2Zs4/7k9MARjZEGF4DPG1c56yCx/pBM w1MruOKDUCdMstRLx3xuD0UZd+51++CDw+7xxsdcGdxL9y3viCehJINUaTt3t24XCAqT StgQ== 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=m+BQPj/lBcR1zrvdrB3hHW5jIDZ+6cpnL5elcB3yFd0=; b=wiatLNI6raSk7El5Iq7rKRqtalIlUB0dAbUomigOwdn5LrzU5pb9LX9hC4PV3LWGq8 caaJ4lUnwTNcRto581J/Zh38MUTAzoXcBinK0QQgHDWkUSk9jo3VmGXkXOM5US7bxELw 9KvkhA9D3gzdJkHQVI7P7NbYQvRKpz0lTHRun4H4nEUL8o+JUXg7Q/NJ2RKcAfH27O0W LiZ3iq+81FJtFq/+Kg67p/ddIsyu0Ll7co/iH0zAx+Isw4Gw+RsW3j1sqc1S9cDF6QS3 UH8JpPjWjvqTsuQv8qEA+EaiXQK4B6rwVurgPAb3GQPMmfm6VeN27m7RZ84qgQ8o/BG9 Luyw== 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 r14si3563267pgk.75.2018.12.07.12.14.55; Fri, 07 Dec 2018 12:15:10 -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 S1726161AbeLGUNk (ORCPT + 99 others); Fri, 7 Dec 2018 15:13:40 -0500 Received: from mail1.windriver.com ([147.11.146.13]:57415 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726147AbeLGUNh (ORCPT ); Fri, 7 Dec 2018 15:13:37 -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 wB7KDYKf029603 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Fri, 7 Dec 2018 12:13:34 -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; Fri, 7 Dec 2018 12:13:34 -0800 From: Paul Gortmaker To: Lee Jones CC: , Paul Gortmaker , Haojian Zhuang Subject: [PATCH 06/18] mfd: max8925-core: drop unused MODULE_ tags from non-modular code Date: Fri, 7 Dec 2018 15:10:53 -0500 Message-ID: <1544213465-16259-7-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1544213465-16259-1-git-send-email-paul.gortmaker@windriver.com> References: <1544213465-16259-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_MAX8925 drivers/mfd/Kconfig: bool "Maxim Semiconductor MAX8925 PMIC Support" ...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 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: Haojian Zhuang Acked-by: Linus Walleij Signed-off-by: Paul Gortmaker --- drivers/mfd/max8925-core.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/mfd/max8925-core.c b/drivers/mfd/max8925-core.c index fd8b15cd84fd..87c724ba9793 100644 --- a/drivers/mfd/max8925-core.c +++ b/drivers/mfd/max8925-core.c @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include @@ -919,8 +919,3 @@ void max8925_device_exit(struct max8925_chip *chip) free_irq(chip->tsc_irq, chip); mfd_remove_devices(chip->dev); } - - -MODULE_DESCRIPTION("PMIC Driver for Maxim MAX8925"); -MODULE_AUTHOR("Haojian Zhuang