From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752093AbcGPUxj (ORCPT ); Sat, 16 Jul 2016 16:53:39 -0400 Received: from terminus.zytor.com ([198.137.202.10]:39028 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751693AbcGPUxi (ORCPT ); Sat, 16 Jul 2016 16:53:38 -0400 Date: Sat, 16 Jul 2016 13:52:55 -0700 From: tip-bot for Paul Gortmaker Message-ID: Cc: paul.gortmaker@windriver.com, kernel@savoirfairelinux.com, fengguang.wu@intel.com, tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, peterz@infradead.org, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org Reply-To: paul.gortmaker@windriver.com, tglx@linutronix.de, kernel@savoirfairelinux.com, fengguang.wu@intel.com, mingo@kernel.org, hpa@zytor.com, peterz@infradead.org, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org In-Reply-To: <20160715235318.GD10758@windriver.com> References: <20160715235318.GD10758@windriver.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/headers] x86/platform: Delete extraneous MODULE_* tags fromm ts5500 Git-Commit-ID: 00677f826bd0c1befb87b8cfa10f30bde1cc2f32 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 00677f826bd0c1befb87b8cfa10f30bde1cc2f32 Gitweb: http://git.kernel.org/tip/00677f826bd0c1befb87b8cfa10f30bde1cc2f32 Author: Paul Gortmaker AuthorDate: Fri, 15 Jul 2016 19:53:18 -0400 Committer: Ingo Molnar CommitDate: Sat, 16 Jul 2016 22:41:00 +0200 x86/platform: Delete extraneous MODULE_* tags fromm ts5500 This file doesn't do anything modular and hence while the tristate Kconfig used for the gpio portion is fine, it recently got swept up in an audit of files using the module.h header but not using any modular registration functions. However it is not compiled in any of the normal build coverage, and so some remaining extraneous MODULE macro use were not found until a randconfig from the kbuild robot came across it. Here we remove the remaining no-op MODULE macros from the built in portion of code relating to this Kconfig option. Reported-by: kbuild test robot Signed-off-by: Paul Gortmaker Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Savoir-faire Linux Inc. Cc: Thomas Gleixner Cc: kbuild-all@01.org Cc: linux-kernel@vger.kernel.org Fixes: cc3ae7b0af27 ("x86/platform: Audit and remove any unnecessary uses of module.h") Link: http://lkml.kernel.org/r/20160715235318.GD10758@windriver.com Signed-off-by: Ingo Molnar --- arch/x86/platform/ts5500/ts5500.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/arch/x86/platform/ts5500/ts5500.c b/arch/x86/platform/ts5500/ts5500.c index 952191b..fd39301 100644 --- a/arch/x86/platform/ts5500/ts5500.c +++ b/arch/x86/platform/ts5500/ts5500.c @@ -345,7 +345,3 @@ error: return err; } device_initcall(ts5500_init); - -MODULE_LICENSE("GPL"); -MODULE_AUTHOR("Savoir-faire Linux Inc. "); -MODULE_DESCRIPTION("Technologic Systems TS-5500 platform driver");