Revert "ipq40xx: Add DK01-C3 config support for Standard profile"

This reverts commit 9857b3461c.

Change-Id: Id1e9f2a20a35622d0648deb479583bfa760b0cc2
Signed-off-by: Sasirekaa Madhesu <smadhesu@codeaurora.org>
This commit is contained in:
Sasirekaa Madhesu 2018-04-06 16:07:40 +05:30
parent c89853711d
commit 56f687c5fe
2 changed files with 5 additions and 10 deletions

View file

@ -16,5 +16,5 @@
/ {
machid = <0x8010200>;
ddr_size = <128>;
config_name = "config@ap.dk01.1-c3,config@ap.dk01.1-c1";
config_name = "config@ap.dk01.1-c3";
};

View file

@ -378,15 +378,10 @@ int config_select(unsigned int addr, char *rcmd, int rcmd_size)
}
}
char *tok = strtok(dtb_config_name, ",");
while(tok != NULL){
if (fit_conf_get_node((void *)addr, tok) >= 0) {
snprintf(rcmd, rcmd_size, "bootm 0x%x#%s\n",
addr, tok);
return 0;
}
tok = strtok(NULL, ",");
if (fit_conf_get_node((void *)addr, dtb_config_name) >= 0) {
snprintf(rcmd, rcmd_size, "bootm 0x%x#%s\n",
addr, dtb_config_name);
return 0;
}
printf("Config not availabale\n");