From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753021AbcHPBHo (ORCPT ); Mon, 15 Aug 2016 21:07:44 -0400 Received: from spindle.queued.net ([45.33.49.30]:53173 "EHLO spindle.queued.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751244AbcHPBHn (ORCPT ); Mon, 15 Aug 2016 21:07:43 -0400 X-Greylist: delayed 379 seconds by postgrey-1.27 at vger.kernel.org; Mon, 15 Aug 2016 21:07:43 EDT Date: Mon, 15 Aug 2016 18:01:20 -0700 From: Andres Salomon To: Paul Gortmaker Cc: , Darren Hart , Subject: Re: [PATCH] platform: olpc: make ec explicitly non-modular Message-ID: <20160815180120.24e46394@e7450.queued.net> In-Reply-To: <20160815222517.1348-1-paul.gortmaker@windriver.com> References: <20160815222517.1348-1-paul.gortmaker@windriver.com> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fine by me. Acked-by: Andres Salomon On Mon, 15 Aug 2016 18:25:17 -0400 Paul Gortmaker wrote: > The Kconfig entry controlling compilation of this code is: > > arch/x86/Kconfig:config OLPC > arch/x86/Kconfig: bool "One Laptop Per Child 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 > was (or is now) contained at the top of the file in the comments. > > Cc: Darren Hart > Cc: Andres Salomon > Cc: platform-driver-x86@vger.kernel.org > Signed-off-by: Paul Gortmaker > --- > drivers/platform/olpc/olpc-ec.c | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > > diff --git a/drivers/platform/olpc/olpc-ec.c > b/drivers/platform/olpc/olpc-ec.c index f99b183d5296..374a8028fec7 > 100644 --- a/drivers/platform/olpc/olpc-ec.c > +++ b/drivers/platform/olpc/olpc-ec.c > @@ -1,6 +1,8 @@ > /* > * Generic driver for the OLPC Embedded Controller. > * > + * Author: Andres Salomon > + * > * Copyright (C) 2011-2012 One Laptop per Child Foundation. > * > * Licensed under the GPL v2 or later. > @@ -12,7 +14,7 @@ > #include > #include > #include > -#include > +#include > #include > #include > #include > @@ -326,8 +328,4 @@ static int __init olpc_ec_init_module(void) > { > return platform_driver_register(&olpc_ec_plat_driver); > } > - > arch_initcall(olpc_ec_init_module); > - > -MODULE_AUTHOR("Andres Salomon "); > -MODULE_LICENSE("GPL");