From patchwork Thu Nov 8 17:56:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Henrik Rydberg X-Patchwork-Id: 1716761 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id D39363FCDE for ; Thu, 8 Nov 2012 17:50:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756453Ab2KHRuW (ORCPT ); Thu, 8 Nov 2012 12:50:22 -0500 Received: from smtprelay-h21.telenor.se ([195.54.99.196]:43335 "EHLO smtprelay-h21.telenor.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756201Ab2KHRuW (ORCPT ); Thu, 8 Nov 2012 12:50:22 -0500 Received: from ipb3.telenor.se (ipb3.telenor.se [195.54.127.166]) by smtprelay-h21.telenor.se (Postfix) with ESMTP id 85DBBE9C93; Thu, 8 Nov 2012 18:50:20 +0100 (CET) X-SENDER-IP: [85.230.29.114] X-LISTENER: [smtp.bredband.net] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArrJAHrvm1BV5h1yPGdsb2JhbABEilK4BwEBfBkBAQEBHxkNJ4IeAQEEAScTHBMBDxAIAxEDAQIvFCUKDA4TiAQKvC4Ui34BgUSBLoJzYQOVeoV7jTmBYw X-IronPort-AV: E=Sophos;i="4.80,739,1344204000"; d="scan'208";a="226425435" Received: from c-721de655.710-13-64736c12.cust.bredbandsbolaget.se (HELO polaris) ([85.230.29.114]) by ipb3.telenor.se with SMTP; 08 Nov 2012 18:50:18 +0100 Received: by polaris (sSMTP sendmail emulation); Thu, 08 Nov 2012 18:56:09 +0100 From: "Henrik Rydberg" Date: Thu, 8 Nov 2012 18:56:09 +0100 To: Dmitry Torokhov Cc: Randy Dunlap , linux-input@vger.kernel.org, LKML Subject: Re: [PATCH] input: fix input-mt kernel-doc warning Message-ID: <20121108175609.GA11114@polaris.bitmath.org> References: <5099B45E.8080105@infradead.org> <20121107194617.GA3738@polaris.bitmath.org> <20121108170431.GD8877@core.coreip.homeip.net> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20121108170431.GD8877@core.coreip.homeip.net> 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 Hi Dmitry, > > > From: Randy Dunlap > > > > > > Fix new kernel-doc warning in input-mt.c: > > > > > > Warning(drivers/input/input-mt.c:38): No description found for parameter 'flags' > > > > Thanks for the patch. It seemed reasonable to expand the function > > documentation a bit as well, hope you are alright with the patch > > below, Dmitry, care to pick this up for 3.7? Otherwise I can carry it > > for 3.8. > > Randy, Henrik, > > I'll try getting it in 3.7. Seems there were more warnings introduced in 3.7-rc1... adding the patch below seems to fix all of them. I guess you want to merge the former patch into this one. Thanks, Henrik From 1ba1d5e18057260a3203625eaee22cc94393fda3 Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Thu, 8 Nov 2012 18:48:22 +0100 Subject: [PATCH] Input: Document new struct members Fixes kernel-doc warnings for the members added in 3.7-rc1. Signed-off-by: Henrik Rydberg --- include/linux/input.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/input.h b/include/linux/input.h index cab994b..2d55e55 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -112,6 +112,9 @@ struct input_value { * @h_list: list of input handles associated with the device. When * accessing the list dev->mutex must be held * @node: used to place the device onto input_dev_list + * @num_vals: number of values queued in the current frame + * @max_vals: maximum number of values queued in a frame + * @vals: array of values queued in the current frame */ struct input_dev { const char *name;