|
@@ -670,7 +670,7 @@ int __init early_init_dt_scan_chosen(unsigned long node, const char *uname,
|
|
|
|
|
|
pr_debug("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
|
|
|
|
|
|
- if (depth != 1 ||
|
|
|
+ if (depth != 1 || !data ||
|
|
|
(strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
|
|
|
return 0;
|
|
|
|
|
@@ -679,16 +679,16 @@ int __init early_init_dt_scan_chosen(unsigned long node, const char *uname,
|
|
|
/* Retrieve command line */
|
|
|
p = of_get_flat_dt_prop(node, "bootargs", &l);
|
|
|
if (p != NULL && l > 0)
|
|
|
- strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
|
|
|
+ strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE));
|
|
|
|
|
|
#ifdef CONFIG_CMDLINE
|
|
|
#ifndef CONFIG_CMDLINE_FORCE
|
|
|
if (p == NULL || l == 0 || (l == 1 && (*p) == 0))
|
|
|
#endif
|
|
|
- strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
|
|
|
+ strlcpy(data, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
|
|
|
#endif /* CONFIG_CMDLINE */
|
|
|
|
|
|
- pr_debug("Command line is: %s\n", cmd_line);
|
|
|
+ pr_debug("Command line is: %s\n", (char*)data);
|
|
|
|
|
|
/* break now */
|
|
|
return 1;
|