From patchwork Sat Oct 4 12:11:27 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerry Van Baren X-Patchwork-Id: 2694 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id DDD57DDFFC for ; Sat, 4 Oct 2008 22:17:17 +1000 (EST) X-Original-To: linuxppc-dev@ozlabs.org Delivered-To: linuxppc-dev@ozlabs.org X-Greylist: delayed 331 seconds by postgrey-1.31 at ozlabs; Sat, 04 Oct 2008 22:17:03 EST Received: from QMTA04.emeryville.ca.mail.comcast.net (qmta04.emeryville.ca.mail.comcast.net [76.96.30.40]) by ozlabs.org (Postfix) with ESMTP id 746D3DDD0C for ; Sat, 4 Oct 2008 22:17:02 +1000 (EST) Received: from OMTA03.emeryville.ca.mail.comcast.net ([76.96.30.27]) by QMTA04.emeryville.ca.mail.comcast.net with comcast id Nbt91a00H0b6N64A4cBXgu; Sat, 04 Oct 2008 12:11:31 +0000 Received: from dellserver.lan ([71.205.27.74]) by OMTA03.emeryville.ca.mail.comcast.net with comcast id NcBT1a00A1bwB6n8PcBU7L; Sat, 04 Oct 2008 12:11:30 +0000 X-Authority-Analysis: v=1.0 c=1 a=q7FLGh259nUA:10 a=aSk-NYf09KIA:10 a=rfm0n5WyWcELVTbf6C0A:9 a=I53Igg0bCPfDxLf6sUIA:7 a=zDpfkaiK8DCW51mW21LxN5ESpPcA:4 a=N-eO9Cut16kA:10 a=5K3QHU3FhZcA:10 Received: from vanbaren by dellserver.lan with local (Exim 4.69) (envelope-from ) id 1Km5yp-0008OU-H6; Sat, 04 Oct 2008 08:11:27 -0400 Date: Sat, 4 Oct 2008 08:11:27 -0400 From: Jerry Van Baren To: linuxppc-dev@ozlabs.org, jdl@jdl.com, david@gibson.dropbear.id.au Subject: [PATCH] libfdt: Fix error in documentation for fdt_get_alias_namelen() Message-ID: <20081004121127.GA32255@cideas.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20080820065514.GA18996@yookeroo.seuss> User-Agent: Mutt/1.5.18 (2008-05-17) X-BeenThere: linuxppc-dev@ozlabs.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org Oops, screwed up the function name in the documenting comment for this function. Trivial correction in this patch. Signed-off-by: David Gibson Acked-by: Gerald Van Baren --- David's cut-n-paste fix git-ized and applied to the dtc repo. Best regards, gvb libfdt/libfdt.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libfdt/libfdt.h b/libfdt/libfdt.h index a11bbf3..4a95e11 100644 --- a/libfdt/libfdt.h +++ b/libfdt/libfdt.h @@ -459,7 +459,7 @@ static inline void *fdt_getprop_w(void *fdt, int nodeoffset, uint32_t fdt_get_phandle(const void *fdt, int nodeoffset); /** - * fdt_get_namelen - get alias based on substring + * fdt_get_alias_namelen - get alias based on substring * @fdt: pointer to the device tree blob * @name: name of the alias th look up * @namelen: number of characters of name to consider