From patchwork Sun Aug 19 00:41:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Randy.Dunlap" X-Patchwork-Id: 178506 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3413B2C0085 for ; Sun, 19 Aug 2012 10:43:31 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T2tag-00007T-Bm; Sun, 19 Aug 2012 00:42:06 +0000 Received: from oproxy8-pub.bluehost.com ([69.89.22.20]) by merlin.infradead.org with smtp (Exim 4.76 #1 (Red Hat Linux)) id 1T2tac-00007F-OL for linux-mtd@lists.infradead.org; Sun, 19 Aug 2012 00:42:03 +0000 Received: (qmail 18403 invoked by uid 0); 19 Aug 2012 00:41:36 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by oproxy8.bluehost.com with SMTP; 19 Aug 2012 00:41:36 -0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenotime.net; s=default; h=Content-Transfer-Encoding:Content-Type:Subject:To:MIME-Version:From:Date:Message-ID; bh=xV2F/nyMhSXyE1bTaE+CCAN2QGZU5uuInCwO+ObaHeM=; b=bDJDZZxtE2ZUlmjcPxGuXSrfFgqD78U2BDf/jugKWhRhAixcWHgvcoZsl1iKaa7gOdLS/12JRP3D+zpq4ElxEcWevBp8lcQeTkyoj92wfSlm9c1LSq10/ISzWGj8hsLt; Received: from [50.53.38.135] (port=40665 helo=[192.168.1.2]) by box742.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.76) (envelope-from ) id 1T2taC-0000nK-3x; Sat, 18 Aug 2012 18:41:36 -0600 Message-ID: <5030363F.3010505@xenotime.net> Date: Sat, 18 Aug 2012 17:41:35 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: linux-mtd@lists.infradead.org, David Woodhouse Subject: [PATCH] MTD: fix kernel-doc warning in include/linux/mtd/nand.h X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [69.89.22.20 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Randy Dunlap Fix kernel-doc warning in : Warning(include/linux/mtd/nand.h:659): No description found for parameter 'read_byte' Signed-off-by: Randy Dunlap Cc: David Woodhouse Cc: linux-mtd@lists.infradead.org Acked-by: Brian Norris --- include/linux/mtd/nand.h | 1 + 1 file changed, 1 insertion(+) --- lnx-36-rc2.orig/include/linux/mtd/nand.h +++ lnx-36-rc2/include/linux/mtd/nand.h @@ -641,6 +641,7 @@ struct platform_device; * ALE/CLE/nCE. Also used to write command and address * @write_buf: platform specific function for write buffer * @read_buf: platform specific function for read buffer + * @read_byte: platform specific function to read one byte from chip * @priv: private data to transport driver specific settings * * All fields are optional and depend on the hardware driver requirements