From patchwork Tue Sep 15 11:59:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geliang Tang X-Patchwork-Id: 7184011 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 4D6E09F336 for ; Tue, 15 Sep 2015 11:59:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7494E20695 for ; Tue, 15 Sep 2015 11:59:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4FD8D205E9 for ; Tue, 15 Sep 2015 11:59:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751640AbbIOL7g (ORCPT ); Tue, 15 Sep 2015 07:59:36 -0400 Received: from m12-12.163.com ([220.181.12.12]:57780 "EHLO m12-12.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751630AbbIOL7g (ORCPT ); Tue, 15 Sep 2015 07:59:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id; bh=layXFa1FI+4qhtikAV 4vBOPlnuwfHo51RfVKlbuOl4Q=; b=dxCYoZrIyJQKOborQTtDzTWet0nwZmuAq6 MFwfM5v3rkcxRHDvaXg+6AulqE+VV9CBXFqvPNclbCdxZ4T9mfQKH/fl4TQB3JBf sQtw0sPYC6RAm3G52DwchCgOPY7Z3rjFwW0nyr9PnhQValtaKQAyf/FPkSNrzS5y staBDlQp8= Received: from localhost (unknown [218.17.162.133]) by smtp8 (Coremail) with SMTP id DMCowEDpW1UcCPhVpaatAg--.137S3; Tue, 15 Sep 2015 19:59:25 +0800 (CST) From: Geliang Tang To: Mark Brown Cc: Geliang Tang , linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] spi: fix kernel-doc warnings in spi.h Date: Tue, 15 Sep 2015 04:59:21 -0700 Message-Id: <2ecb1dfb30cbac1fdd4e1884de40af896bf5975b.1442346538.git.geliangtang@163.com> X-Mailer: git-send-email 1.9.1 X-CM-TRANSID: DMCowEDpW1UcCPhVpaatAg--.137S3 X-Coremail-Antispam: 1Uf129KBjvdXoWrZw1xtrWDury5Gr48GrykZrb_yoWfWFb_A3 Wrtr4rW3yIvF1fJa48KFZ7tFnI9w18WFn8ZFnaqrWUArnFyws0kas7GrZrW3yxuFnFkwn3 AFn7X34I9rnxKjkaLaAFLSUrUUUUob8apTn2vfkv8UJUUUU8Yxn0WfASr-VFAUDa7-sFnT 9fnUUvcSsGvfC2KfnxnUUI43ZEXa7IU0zOJ7UUUUU== X-Originating-IP: [218.17.162.133] X-CM-SenderInfo: 5jhoxtpqjwt0rj6rljoofrz/1tbivx12mVWBNBTc-QAAsY Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix the following 'make htmldocs' warnings: .//include/linux/spi/spi.h:71: warning: No description found for parameter 'lock' .//include/linux/spi/spi.h:71: warning: Excess struct/union/enum/typedef member 'clock' description in 'spi_statistics' Signed-off-by: Geliang Tang --- include/linux/spi/spi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 269e8af..6b00f18 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -34,7 +34,7 @@ extern struct bus_type spi_bus_type; /** * struct spi_statistics - statistics for spi transfers - * @clock: lock protecting this structure + * @lock: lock protecting this structure * * @messages: number of spi-messages handled * @transfers: number of spi_transfers handled