From patchwork Wed Oct 7 00:03:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Dmitry Torokhov X-Patchwork-Id: 7340831 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1D7419F1B9 for ; Wed, 7 Oct 2015 00:03:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 56593206A4 for ; Wed, 7 Oct 2015 00:03:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 267962069B for ; Wed, 7 Oct 2015 00:03:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752574AbbJGADh (ORCPT ); Tue, 6 Oct 2015 20:03:37 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:33883 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752505AbbJGADg (ORCPT ); Tue, 6 Oct 2015 20:03:36 -0400 Received: by padhy16 with SMTP id hy16so1737744pad.1 for ; Tue, 06 Oct 2015 17:03:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:content-transfer-encoding:user-agent; bh=FB/8/cWiXZ1GRQ9SvnLXcNmQw5i5Gg9L5rESObb9Lbk=; b=VuOvH/rW+8Q/mxYP0tCt38kzz40rTwCIL6zDGjUz9Ucwm52hdhJpb1EMWOP5HIkSGW fxsra2E3y8WU/vZE4NilD3PycVKfxWfSaxGgho+ObzDePlAdyq7/76d/shzcsJ58LZe0 YdyYyGBYOxVH5w/WB6s2rNJTc5QHxiwz+qosLuFw8U1cylGpQaHP1DDr3oo8qeDrX1LH ZKZ+uO/IXasfdbtQNu4QwtM1onDufnzggiyYOaUH6xu6sy3PvW4N1XRFQxUeRC5Qd3ZS b+nOoWV4XlU8CyzU5XGQoEy53YbFBcL3Phoq8hsn+iEZmIooCMzEafJEBUZmSqS6H5OL 2Srg== X-Received: by 10.68.102.2 with SMTP id fk2mr1820085pbb.129.1444176216232; Tue, 06 Oct 2015 17:03:36 -0700 (PDT) Received: from dtor-ws ([2620:0:1000:1301:b488:85ff:af82:c140]) by smtp.gmail.com with ESMTPSA id rs8sm35675695pbb.14.2015.10.06.17.03.35 (version=TLS1_2 cipher=AES128-SHA256 bits=128/128); Tue, 06 Oct 2015 17:03:35 -0700 (PDT) Date: Tue, 6 Oct 2015 17:03:33 -0700 From: Dmitry Torokhov To: linux-input@vger.kernel.org Cc: Noralf =?iso-8859-1?Q?Tr=F8nnes?= Subject: [PATCH] Input: ft6236 - change module license string to match copyright notice Message-ID: <20151007000333.GA36264@dtor-ws> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The copyright/license notice says that the code is licensed under GPL v2 only (not GPL v2+), so let's use proper string in MODULE_LICENSE(). Signed-off-by: Dmitry Torokhov --- drivers/input/touchscreen/ft6236.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/ft6236.c b/drivers/input/touchscreen/ft6236.c index a394cd4..d240d2e 100644 --- a/drivers/input/touchscreen/ft6236.c +++ b/drivers/input/touchscreen/ft6236.c @@ -323,4 +323,4 @@ module_i2c_driver(ft6236_driver); MODULE_AUTHOR("Sean Cross "); MODULE_AUTHOR("Noralf Trønnes "); MODULE_DESCRIPTION("FocalTech FT6236 TouchScreen driver"); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("GPL v2");