From patchwork Mon Dec 10 20:01:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Fainelli X-Patchwork-Id: 1859831 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 85E38DFB79 for ; Mon, 10 Dec 2012 20:01:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751006Ab2LJUBJ (ORCPT ); Mon, 10 Dec 2012 15:01:09 -0500 Received: from mail-wg0-f46.google.com ([74.125.82.46]:39954 "EHLO mail-wg0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750952Ab2LJUBI (ORCPT ); Mon, 10 Dec 2012 15:01:08 -0500 Received: by mail-wg0-f46.google.com with SMTP id dr13so1988858wgb.1 for ; Mon, 10 Dec 2012 12:01:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:organization:user-agent :mime-version:content-transfer-encoding:content-type; bh=ENLf85YSzQRpL44UeBFDvqBkOZFXW2s+6eCvfaNK11A=; b=RoHYc8LYYczEb8+vaATZTtPoaW3sRfUF5855VCafAcE+ql0Hxd04kFnYyWEuYIzl+E brvvBr2DsqbcUxTuu4QkEPKMpfyNmHsoFUWE8murSnSCFWwuE30HZy10zPQTyJ76PZoz Cy2URuRDEbSF1pr8UBMJ0THNZvQrvf/SHL7ggM3gcBFs8RqLuKo4UK+OQkkDnS3erMCo XTr9YzLv9epkuiR97EF1h00pI5wc4J/AR45qaice7xuQLxaN2PkITnHWEFxoNqke/H9G xqo38qda8MxredxFpaHlVM2WRu+G4AYDWxP0Ap6pRL6QKeCnJQYIBgpF8ayKtitZv1OG ry0A== Received: by 10.180.100.73 with SMTP id ew9mr12832257wib.21.1355169666231; Mon, 10 Dec 2012 12:01:06 -0800 (PST) Received: from bender.localnet ([2a01:e35:2f70:4010:3cb1:6893:2f9b:7af7]) by mx.google.com with ESMTPS id i2sm11468033wiw.3.2012.12.10.12.01.05 (version=SSLv3 cipher=OTHER); Mon, 10 Dec 2012 12:01:05 -0800 (PST) From: Florian Fainelli To: dmitry.torokhov@gmail.com, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Input: matrix-keymap - provide a proper module license Date: Mon, 10 Dec 2012 12:01:05 -0800 (PST) Message-ID: <11020313.JpKK99GBpl@bender> Organization: OpenWrt User-Agent: KMail/4.8.5 (Linux/3.2.0-34-generic; KDE/4.9.2; x86_64; ; ) MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org The matrix-keymap module is currently lacking a proper module license, add one so we don't have this module tainting the entire kernel. This issue has been present since commit 1932811f (Input: matrix-keymap - uninline and prepare for device tree support) Signed-off-by: Florian Fainelli CC: stable@vger.kernel.org --- Dmitry, can you try to push this to Linus before 3.7 final? Thank you! drivers/input/matrix-keymap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/input/matrix-keymap.c b/drivers/input/matrix-keymap.c index 443ad64b..d88d9be 100644 --- a/drivers/input/matrix-keymap.c +++ b/drivers/input/matrix-keymap.c @@ -23,6 +23,7 @@ #include #include #include +#include #include static bool matrix_keypad_map_key(struct input_dev *input_dev, @@ -161,3 +162,5 @@ int matrix_keypad_build_keymap(const struct matrix_keymap_data *keymap_data, return 0; } EXPORT_SYMBOL(matrix_keypad_build_keymap); + +MODULE_LICENSE("GPL");