Fix codying style broken by recent libfdt sync

Commit b02e4044ff ("libfdt: Bring in upstream stringlist
functions") broke codying style in some places especially
by inserting an extra whitespace before fdt_stringlist_count().

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Masahiro Yamada 2016-10-17 20:43:01 +09:00 committed by Tom Rini
parent 01ae56cfcb
commit 6e67f176bb
6 changed files with 9 additions and 9 deletions

View File

@ -698,8 +698,8 @@ fdt_addr_t dev_get_addr_name(struct udevice *dev, const char *name)
#if CONFIG_IS_ENABLED(OF_CONTROL)
int index;
index = fdt_stringlist_search(gd->fdt_blob, dev->of_offset, "reg-names",
name);
index = fdt_stringlist_search(gd->fdt_blob, dev->of_offset,
"reg-names", name);
if (index < 0)
return index;