From: tangjianqiang Date: Fri, 10 Apr 2020 08:32:04 +0000 (+0800) Subject: of: fix the warnings from command line. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8d3cdfeca808f2b2dee11dda4282770c4b579b48;p=linux.git of: fix the warnings from command line. Gerrit will complain with this warnings: ERROR: (foo*) should be (foo *) Signed-off-by: tangjianqiang Reviewed-by: Frank Rowand Signed-off-by: Rob Herring --- diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 2cdf64d2456f8..8a8e07a8f03db 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) {