From patchwork Mon Jan 2 10:49:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 6024 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9BB3723E39 for ; Mon, 2 Jan 2012 10:50:02 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 8C6F8A18527 for ; Mon, 2 Jan 2012 10:50:02 +0000 (UTC) Received: by eaac11 with SMTP id c11so14543581eaa.11 for ; Mon, 02 Jan 2012 02:50:02 -0800 (PST) Received: by 10.205.120.148 with SMTP id fy20mr10492153bkc.125.1325501402262; Mon, 02 Jan 2012 02:50:02 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.205.82.144 with SMTP id ac16cs310076bkc; Mon, 2 Jan 2012 02:50:01 -0800 (PST) Received: by 10.213.13.10 with SMTP id z10mr13084931ebz.63.1325501399606; Mon, 02 Jan 2012 02:49:59 -0800 (PST) Received: from eu1sys200aog108.obsmtp.com (eu1sys200aog108.obsmtp.com. [207.126.144.125]) by mx.google.com with SMTP id e41si25882425eeb.143.2012.01.02.02.49.57 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 02 Jan 2012 02:49:59 -0800 (PST) Received-SPF: neutral (google.com: 207.126.144.125 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) client-ip=207.126.144.125; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.125 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) smtp.mail=linus.walleij@stericsson.com Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob108.postini.com ([207.126.147.11]) with SMTP ID DSNKTwGL1Wjs5Gi+byDzq2N4VqjEDu+sodMO@postini.com; Mon, 02 Jan 2012 10:49:59 UTC Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 604F6139; Mon, 2 Jan 2012 10:49:54 +0000 (GMT) Received: from relay1.stm.gmessaging.net (unknown [10.230.100.17]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 117CC13D7; Mon, 2 Jan 2012 10:49:54 +0000 (GMT) Received: from exdcvycastm003.EQ1STM.local (alteon-source-exch [10.230.100.61]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "exdcvycastm003", Issuer "exdcvycastm003" (not verified)) by relay1.stm.gmessaging.net (Postfix) with ESMTPS id 15EEE24C075; Mon, 2 Jan 2012 11:49:48 +0100 (CET) Received: from steludxu4075.lud.stericsson.com (10.230.100.153) by smtp.stericsson.com (10.230.100.1) with Microsoft SMTP Server (TLS) id 8.3.83.0; Mon, 2 Jan 2012 11:49:53 +0100 From: Linus Walleij To: Dmitry Torokhov Cc: , Naga Radhesh , Linus Walleij Subject: [PATCH] input/tc3589x: add missing kerneldoc Date: Mon, 2 Jan 2012 11:49:46 +0100 Message-ID: <1325501386-22011-1-git-send-email-linus.walleij@stericsson.com> X-Mailer: git-send-email 1.7.8 MIME-Version: 1.0 From: Naga Radhesh This adds two missing kerneldoc entries for the TC3589x keypad driver. Signed-off-by: Naga Radhesh Reviewed-by: Srinidhi Kasagar Signed-off-by: Linus Walleij --- drivers/input/keyboard/tc3589x-keypad.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/input/keyboard/tc3589x-keypad.c b/drivers/input/keyboard/tc3589x-keypad.c index f60c9e8..277c665 100644 --- a/drivers/input/keyboard/tc3589x-keypad.c +++ b/drivers/input/keyboard/tc3589x-keypad.c @@ -74,11 +74,13 @@ /** * struct tc_keypad - data structure used by keypad driver + * @tc3589x: pointer to tc35893 * @input: pointer to input device object * @board: keypad platform device * @krow: number of rows * @kcol: number of coloumns * @keymap: matrix scan code table for keycodes + * @keypad_stopped: holds keypad status */ struct tc_keypad { struct tc3589x *tc3589x;