From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751936AbcGNAXG (ORCPT ); Wed, 13 Jul 2016 20:23:06 -0400 Received: from mga14.intel.com ([192.55.52.115]:29131 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751503AbcGNAW6 (ORCPT ); Wed, 13 Jul 2016 20:22:58 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,360,1464678000"; d="scan'208";a="138780337" Subject: Re: [PATCH 1/8] x86: don't use module.h just for AUTHOR / LICENSE tags To: Paul Gortmaker , linux-kernel@vger.kernel.org References: <20160714001901.31603-1-paul.gortmaker@windriver.com> <20160714001901.31603-2-paul.gortmaker@windriver.com> Cc: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org From: Arjan van de Ven Message-ID: <3bd2a68f-06e2-4fd2-eab3-a05ef50ff854@linux.intel.com> Date: Wed, 13 Jul 2016 17:22:56 -0700 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160714001901.31603-2-paul.gortmaker@windriver.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 7/13/2016 5:18 PM, Paul Gortmaker wrote: > The Kconfig controlling compilation of these files are: > > arch/x86/Kconfig.debug:config DEBUG_RODATA_TEST > arch/x86/Kconfig.debug: bool "Testcase for the marking rodata read-only" > > arch/x86/Kconfig.debug:config X86_PTDUMP_CORE > arch/x86/Kconfig.debug: def_bool n > > ...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: Arjan van de Ven Acked-by: Arjan van de Ven original these were tested as modules, but they really shouldn't be modules in the normal kernel (and aren't per Kconfig)