Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2875325imu; Sun, 13 Jan 2019 12:10:46 -0800 (PST) X-Google-Smtp-Source: ALg8bN7hqPCruM2vDOpRoE0OMaP2elPZ6AGNqLUyNULt0/axtte2fFpa1Lj9Mzn0kXZIaYDRxlUM X-Received: by 2002:a17:902:b90b:: with SMTP id bf11mr22546112plb.284.1547410246782; Sun, 13 Jan 2019 12:10:46 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1547410246; cv=none; d=google.com; s=arc-20160816; b=W+vKqiRvAl2NUH9p/zdhO8p10sdlHCAvplQtUMZUGmgANVx+hwWmmw4yQdcd6kVSWG TI7ZqDRJCi7A2yyIgaGXgW9ZMbCtm/WKmZk7ikl/k41AYhDYWuKnIEmOe73vGDDFOQT2 6ys1GBpBZ0v5hlG8qfdj/j8nzcPBaUUumeLqgWTQ5+fB5+7vsOE5b+7lTkmwmlxCRyRk etM8XT12Ddu3DWufV5/IZ4qfFuGKlph07RKMIfaOK20fsk1fpCJZL98v+8Sc4uUVU1tv of0GbfShB7OWIWbSf4Hw2o+pnhLljbU6A0OVJGyffQYZXTTielQabdmaqH6JPAdtezfk bKww== 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=wrx8gujE1mQ2GeRElzHnNta0Y7CTEb5N5Mv8pJmusac=; b=pJj78jisNWf2o2Yxmhy1sZyzuCQqW5WBy/mgTHqh5AVowxS2ru+VaCdsifGNAWEzj+ K4146ce4+nm3vv7J5ut7AsVyHcnB1NhVl8HZyB5I+MDi98L/d3Tr4wNnb+pFYH3vtlZG U1GO5+/x4E60yB2iIu9OhdB0burZKvjCH7Cs12nTZGGiBE37p+d58qimgCKxGZHB7FTi ro9ozbE8zdBX5rWY0njzDZ9xtIAycbYAYHeQUWNDDv8FhqylAdzCz9gJETgBYFsS9jU7 gwEioxfzLY/V5KhDkfT97h9gqJ4hvmof5v8FwiyJpuHSlouAx8v9xqs4gvCJeAlGqa+H llKw== 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 k186si82175755pgc.576.2019.01.13.12.10.29; Sun, 13 Jan 2019 12:10:46 -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 S1726533AbfAMUAB (ORCPT + 99 others); Sun, 13 Jan 2019 15:00:01 -0500 Received: from mail1.windriver.com ([147.11.146.13]:50247 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726306AbfAMUAA (ORCPT ); Sun, 13 Jan 2019 15:00:00 -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 x0DIcAQS026185 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL); Sun, 13 Jan 2019 10:38:10 -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, 13 Jan 2019 10:38:10 -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: Sun, 13 Jan 2019 13:36:37 -0500 Message-ID: <1547404609-14161-7-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1547404609-14161-1-git-send-email-paul.gortmaker@windriver.com> References: <1547404609-14161-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 Signed-off-by: Paul Gortmaker Acked-by: Linus Walleij --- 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