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 /drivers/net/sun8i_emac.c | |
parent | 01ae56cfcb3f6bbcd1e1cbd283ae2b8b38587664 (diff) |
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 'drivers/net/sun8i_emac.c')
-rw-r--r-- | drivers/net/sun8i_emac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c index 91570a2910..6ac8ba3721 100644 --- a/drivers/net/sun8i_emac.c +++ b/drivers/net/sun8i_emac.c @@ -457,7 +457,7 @@ static int parse_phy_pins(struct udevice *dev) int pin; pin_name = fdt_stringlist_get(gd->fdt_blob, offset, - "allwinner,pins", i, NULL); + "allwinner,pins", i, NULL); if (!pin_name) break; if (pin_name[0] != 'P') |