From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753346AbbCIRan (ORCPT ); Mon, 9 Mar 2015 13:30:43 -0400 Received: from mail-pd0-f182.google.com ([209.85.192.182]:34107 "EHLO mail-pd0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751981AbbCIRah (ORCPT ); Mon, 9 Mar 2015 13:30:37 -0400 Date: Mon, 9 Mar 2015 10:30:22 -0700 From: Brian Norris To: Paul Bolle Cc: linux-mtd@lists.infradead.org, Dmitry Torokhov , Anatol Pomazao , Ray Jui , Corneliu Doban , Jonathan Richardson , Florian Fainelli , =?utf-8?B?UmFmYcWCIE1pxYJlY2tp?= , bcm-kernel-feedback-list@broadcom.com, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Kevin Cernekee , sbranden@broadcom.com Subject: Re: [PATCH 3/3] mtd: nand: add NAND driver for Broadcom STB NAND controller Message-ID: <20150309173022.GS18140@ld-irv-0074> References: <1425691129-1150-1-git-send-email-computersforpeace@gmail.com> <1425691129-1150-4-git-send-email-computersforpeace@gmail.com> <1425731983.2281.6.camel@tiscali.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1425731983.2281.6.camel@tiscali.nl> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Mar 07, 2015 at 01:39:43PM +0100, Paul Bolle wrote: > Only a license nit. > > Brian Norris schreef op vr 06-03-2015 om 17:18 [-0800]: > > > --- /dev/null > > +++ b/drivers/mtd/nand/brcmstb_nand.c > > @@ -0,0 +1,2182 @@ > > +/* > > + * Copyright © 2010-2015 Broadcom Corporation > > + * > > + * This program is free software; you can redistribute it and/or modify > > + * it under the terms of the GNU General Public License version 2 as > > + * published by the Free Software Foundation. > > + * > > + * This program is distributed in the hope that it will be useful, > > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > > + * GNU General Public License for more details. > > + */ > > This states the license is GPL v2. > > > +MODULE_LICENSE("GPL"); > > So you probably want > MODULE_LICENSE("GPL v2"); > > here. Thanks. Fixed. Brian