diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-10-17 20:43:01 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-24 08:04:42 -0400 |
commit | 6e67f176bb0531903d4b443fe7ad477382d0eacc (patch) | |
tree | f4b78499c35d9ad767cd4b79dd65d073312b3d23 /arch/arm | |
parent | 01ae56cfcb3f6bbcd1e1cbd283ae2b8b38587664 (diff) | |
download | u-boot-imx-6e67f176bb0531903d4b443fe7ad477382d0eacc.zip u-boot-imx-6e67f176bb0531903d4b443fe7ad477382d0eacc.tar.gz u-boot-imx-6e67f176bb0531903d4b443fe7ad477382d0eacc.tar.bz2 |
Fix codying style broken by recent libfdt sync
Commit b02e4044ff8e ("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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-tegra/xusb-padctl-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/xusb-padctl-common.c b/arch/arm/mach-tegra/xusb-padctl-common.c index dfbc8ef..43f5bb7 100644 --- a/arch/arm/mach-tegra/xusb-padctl-common.c +++ b/arch/arm/mach-tegra/xusb-padctl-common.c @@ -82,7 +82,7 @@ tegra_xusb_padctl_group_parse_dt(struct tegra_xusb_padctl *padctl, group->name = fdt_get_name(fdt, node, &len); - len = fdt_stringlist_count(fdt, node, "nvidia,lanes"); + len = fdt_stringlist_count(fdt, node, "nvidia,lanes"); if (len < 0) { error("failed to parse \"nvidia,lanes\" property"); return -EINVAL; |