Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752751AbbB1PgK (ORCPT ); Sat, 28 Feb 2015 10:36:10 -0500 Received: from mail-gw1-out.broadcom.com ([216.31.210.62]:38569 "EHLO mail-gw1-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751464AbbB1PgF (ORCPT ); Sat, 28 Feb 2015 10:36:05 -0500 X-IronPort-AV: E=Sophos;i="5.09,667,1418112000"; d="scan'208";a="58414592" Message-ID: <54F1E062.8070609@broadcom.com> Date: Sat, 28 Feb 2015 07:36:02 -0800 From: Scott Branden User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Paul Bolle CC: , Rob Herring , Pawel Moll , Mark Rutland , "Ian Campbell" , Kumar Gala , Dmitry Torokhov , Grant Likely , Ray Jui , Jonathan Richardson , Dmitry Torokhov , Anatol Pomazao , , , Subject: Re: [PATCH v2 2/2] Input: bcm-keypad: Add Broadcom keypad controller References: <1424966930-28097-1-git-send-email-sbranden@broadcom.com> <1424966930-28097-3-git-send-email-sbranden@broadcom.com> <1425132978.24292.39.camel@x220> In-Reply-To: <1425132978.24292.39.camel@x220> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2133 Lines: 62 Yes, will correct. Thanks. On 15-02-28 06:16 AM, Paul Bolle wrote: > On Thu, 2015-02-26 at 08:08 -0800, Scott Branden wrote: >> Add driver for Broadcom's keypad controller. >> >> Broadcom Keypad controller is used to interface a SoC with a matrix-type >> keypad device. The keypad controller supports multiple row and column lines. >> A key can be placed at each intersection of a unique row and a unique column. >> The keypad controller can sense a key-press and key-release and report the >> event using a interrupt to the cpu. >> >> Reviewed-by: Ray Jui >> Signed-off-by: Scott Branden >> --- >> drivers/input/keyboard/Kconfig | 10 + >> drivers/input/keyboard/Makefile | 1 + >> drivers/input/keyboard/bcm-keypad.c | 464 ++++++++++++++++++++++++++++++++++++ >> 3 files changed, 475 insertions(+) >> create mode 100644 drivers/input/keyboard/bcm-keypad.c > > License nit follows. > >> diff --git a/drivers/input/keyboard/bcm-keypad.c b/drivers/input/keyboard/bcm-keypad.c >> new file mode 100644 >> index 0000000..f229ac0 >> --- /dev/null >> +++ b/drivers/input/keyboard/bcm-keypad.c >> @@ -0,0 +1,464 @@ >> +/* >> + * Copyright (C) 2014 Broadcom Corporation >> + * >> + * 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 version 2. > > This states that the license is GPL v2 only. > >> + * >> + * This program is distributed "as is" WITHOUT ANY WARRANTY of any >> + * kind, whether express or implied; without even the implied warranty >> + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >> + * GNU General Public License for more details. >> + */ > > [...] > >> +MODULE_LICENSE("GPL"); > > So you probably want > MODULE_LICENSE("GPL v2"); > > > Paul Bolle > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/