diff options
author | tangjianqiang <wyqt1985@gmail.com> | 2020-04-10 16:32:04 +0800 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2020-04-20 17:22:21 -0500 |
commit | 8d3cdfeca808f2b2dee11dda4282770c4b579b48 (patch) | |
tree | 66d84ab9ed219c1acc4c1bfd6c57e05ce647211a /drivers | |
parent | 7e5ff5917593011360dfafd05093d50d21d115fb (diff) | |
download | linux-8d3cdfeca808f2b2dee11dda4282770c4b579b48.tar.bz2 |
of: fix the warnings from command line.
Gerrit will complain with this warnings:
ERROR: (foo*) should be (foo *)
Signed-off-by: tangjianqiang <tangjianqiang@xiaomi.com>
Reviewed-by: Frank Rowand <frank.rowand@sony.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/of/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 2cdf64d2456f..8a8e07a8f03d 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -1078,7 +1078,7 @@ int __init early_init_dt_scan_chosen(unsigned long node, const char *uname, #endif #endif /* CONFIG_CMDLINE */ - pr_debug("Command line is: %s\n", (char*)data); + pr_debug("Command line is: %s\n", (char *)data); rng_seed = of_get_flat_dt_prop(node, "rng-seed", &l); if (rng_seed && l > 0) { |