From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753489AbbCKPZX (ORCPT ); Wed, 11 Mar 2015 11:25:23 -0400 Received: from muru.com ([72.249.23.125]:36460 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750858AbbCKPZU (ORCPT ); Wed, 11 Mar 2015 11:25:20 -0400 Date: Wed, 11 Mar 2015 08:20:15 -0700 From: Tony Lindgren To: Paul Bolle Cc: Rusty Russell , Dave Jones , Kishon Vijay Abraham I , linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-usb , Brian Hutchinson , Felipe Balbi Subject: Re: [PATCH] phy: Add a driver for dm816x USB PHY Message-ID: <20150311152015.GW5264@atomide.com> References: <20150309205157.GE5140@atomide.com> <1426072599.4244.98.camel@x220> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426072599.4244.98.camel@x220> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Paul Bolle [150311 04:16]: > On Mon, 2015-03-09 at 13:51 -0700, Tony Lindgren wrote: > > --- /dev/null > > +++ b/drivers/phy/phy-dm816x-usb.c > > @@ -0,0 +1,295 @@ > > +/* > > + * This program is free software; you can redistribute it and/or modify > > + * it under the terms of the GNU General Public License as published by > > + * the Free Software Foundation; either version 2 of the License, or > > + * (at your option) any later version. > > + * > > + * 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 or later. > > > +MODULE_LICENSE("GPL v2"); > > So you probably want > MODULE_LICENSE("GPL"); > > here. Oh, it should be just GPL v2 like most of the kernel. Probably copied the header from some other phy driver, will update that instead. Thanks, Tony