Commit acf7f5d9 authored by Alejandro Mery's avatar Alejandro Mery
Browse files

fexc: uboot: turn .chip_density into .density

parent 2534af5d
...@@ -69,6 +69,8 @@ static int generate_dram_struct(FILE *out, struct script_section *sp) ...@@ -69,6 +69,8 @@ static int generate_dram_struct(FILE *out, struct script_section *sp)
continue; /* skip */ continue; /* skip */
else if (strcmp(key, "clk") == 0) else if (strcmp(key, "clk") == 0)
key = "clock"; key = "clock";
else if (strcmp(key, "chip_density") == 0)
key = "density";
if (strncmp(key, "tpr", 3) == 0 || if (strncmp(key, "tpr", 3) == 0 ||
strncmp(key, "emr", 3) == 0) strncmp(key, "emr", 3) == 0)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment