From patchwork Tue Nov 10 23:25:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masanari Iida X-Patchwork-Id: 7592621 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id C1714BF90C for ; Tue, 10 Nov 2015 23:25:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F3786205CA for ; Tue, 10 Nov 2015 23:25:22 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id BB11B205BC for ; Tue, 10 Nov 2015 23:25:21 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 0813C265341; Wed, 11 Nov 2015 00:25:20 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, NO_DNS_FOR_FROM, RCVD_IN_DNSWL_LOW, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 6F2492651CF; Wed, 11 Nov 2015 00:25:12 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 07841265249; Wed, 11 Nov 2015 00:25:11 +0100 (CET) Received: from mail-pa0-f47.google.com (mail-pa0-f47.google.com [209.85.220.47]) by alsa0.perex.cz (Postfix) with ESMTP id A4F362619E9 for ; Wed, 11 Nov 2015 00:25:03 +0100 (CET) Received: by pacdm15 with SMTP id dm15so11105150pac.3 for ; Tue, 10 Nov 2015 15:25:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=wepo94I7xQXTAX92SLXSw1fCLuu1I2tsVgaL1RoIp3k=; b=LBtFcq0THtFyXLTzSWpYnonLb4eV10s4WUd5wM3aZGIHL1qZdV2Gnj6qm20GfUrx8M PKq0+GTSwwy1jDxKiub3DVAD8lGzlSP5j3fn8+jn687PA1Tek9gXOSWJtEc22S/SbGvu VpVykQuWqb7vJ80M4CMby8qQnHPrzddglmyeL2a1SUba+LTsln+GWhtCqFtI3SK3+W7V pAuju/oEnjYWdqft5DpgDn7spFtUu5Tq88HJhbMcYGNaeAyeNP1w5QQe2g5VmvO4FviU sUy0x6GftyKs7QiqwBq10Gy3jRvVdlaNgbQw6UhdxHWkoSrVaV0IGQydpOnV+4j96wzn XxHw== X-Received: by 10.68.130.194 with SMTP id og2mr9669609pbb.167.1447197901902; Tue, 10 Nov 2015 15:25:01 -0800 (PST) Received: from masabert (i118-21-156-233.s30.a048.ap.plala.or.jp. [118.21.156.233]) by smtp.gmail.com with ESMTPSA id qv5sm6140352pbc.71.2015.11.10.15.25.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 10 Nov 2015 15:25:01 -0800 (PST) Received: by masabert (Postfix, from userid 1000) id BF84CE300F; Wed, 11 Nov 2015 08:25:15 +0900 (JST) From: Masanari Iida To: linux-kernel@vger.kernel.org, lgirdwood@gmail.com, alsa-devel@alsa-project.org Date: Wed, 11 Nov 2015 08:25:12 +0900 Message-Id: <1447197912-13508-1-git-send-email-standby24x7@gmail.com> X-Mailer: git-send-email 2.6.2.402.g2635c2b Cc: Masanari Iida Subject: [alsa-devel] [PATCH] ASoC: core: Fix warning while make xmldocs caused by soc-ops.c X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP This patch fix following warning while "make xmldocs". .//sound/soc/soc-ops.c:415: warning: No description found for parameter 'ucontrol' .//sound/soc/soc-ops.c:415: warning: Excess function parameter 'uinfo' description in 'snd_soc_put_volsw_sx' Signed-off-by: Masanari Iida --- sound/soc/soc-ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/soc-ops.c b/sound/soc/soc-ops.c index ecd38e5..2f67ba6 100644 --- a/sound/soc/soc-ops.c +++ b/sound/soc/soc-ops.c @@ -404,7 +404,7 @@ EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx); /** * snd_soc_put_volsw_sx - double mixer set callback * @kcontrol: mixer control - * @uinfo: control element information + * @ucontrol: control element information * * Callback to set the value of a double mixer control that spans 2 registers. *