On 4/10/20 3:32 AM, tangjianqiang wrote: > Gerrit will complain with this warnings: > ERROR: (foo*) should be (foo *) > > Signed-off-by: tangjianqiang <tangjianqiang@xxxxxxxxxx> > --- > drivers/of/fdt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c > index 2cdf64d..8a8e07a 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) { > Reviewed-by: Frank Rowand <frank.rowand@xxxxxxxx>