| --- a/src/plat_boot_config.c 2016-01-28 13:26:28.134887434 -0800 |
| +++ b/src/plat_boot_config.c 2016-02-03 14:20:52.645802502 -0800 |
| @@ -221,10 +221,12 @@ |
| } |
| fgets(line_buffer, sizeof(line_buffer), revision); |
| if (!strncmp(line_buffer, "1.0", strlen("1.0")) || |
| - !strncmp(line_buffer, "1.1", strlen("1.1"))) |
| + !strncmp(line_buffer, "1.1", strlen("1.1"))) { |
| plat_config_data = &mx6sx_boot_config; |
| - if (!strncmp(line_buffer, "1.2", strlen("1.2"))) |
| + /* all other versions should use the new boot config */ |
| + } else { |
| plat_config_data = &mx6sx_to_1_2_boot_config; |
| + } |
| } |
| break; |
| |