From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Fri, 17 Oct 2014 23:25:00 +0200 Subject: [U-Boot] [PATCH 03/11] fdt: Export the fdt_find_or_add_subnode() function In-Reply-To: <1413360341-25828-3-git-send-email-sjg@chromium.org> References: <1413360341-25828-1-git-send-email-sjg@chromium.org> <1413360341-25828-3-git-send-email-sjg@chromium.org> Message-ID: <20141017232500.5cf39c4a@crub> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On Wed, 15 Oct 2014 02:05:33 -0600 Simon Glass wrote: ... > diff --git a/common/fdt_support.c b/common/fdt_support.c > index 3f64156..dc41222 100644 > --- a/common/fdt_support.c > +++ b/common/fdt_support.c > @@ -112,17 +112,7 @@ int fdt_find_and_setprop(void *fdt, const char *node, const char *prop, > return fdt_setprop(fdt, nodeoff, prop, val, len); > } > > -/** > - * fdt_find_or_add_subnode - find or possibly add a subnode of a given node > - * @fdt: pointer to the device tree blob > - * @parentoffset: structure block offset of a node > - * @name: name of the subnode to locate > - * > - * fdt_subnode_offset() finds a subnode of the node with a given name. > - * If the subnode does not exist, it will be created. > - */ > -static int fdt_find_or_add_subnode(void *fdt, int parentoffset, > - const char *name) the function documentation comment should remain here, I think. Thanks, Anatolij