diff options
| -rw-r--r-- | board/ti/am64x/evm.c | 2 | ||||
| -rw-r--r-- | board/ti/j721e/evm.c | 2 | ||||
| -rw-r--r-- | board/ti/j721s2/evm.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c index 25076a8a588..c6ddc44d14c 100644 --- a/board/ti/am64x/evm.c +++ b/board/ti/am64x/evm.c @@ -138,7 +138,7 @@ static struct ti_fdt_map ti_am64_evm_fdt_map[] = { static void setup_board_eeprom_env(void) { - char *name = "am64x_gpevm"; + char *name = NULL; if (do_board_detect()) goto invalid_eeprom; diff --git a/board/ti/j721e/evm.c b/board/ti/j721e/evm.c index d9be9ce2ed7..881392bd963 100644 --- a/board/ti/j721e/evm.c +++ b/board/ti/j721e/evm.c @@ -363,7 +363,7 @@ static struct ti_fdt_map ti_j721e_evm_fdt_map[] = { }; static void setup_board_eeprom_env(void) { - char *name = "j721e"; + char *name = NULL; if (do_board_detect()) goto invalid_eeprom; diff --git a/board/ti/j721s2/evm.c b/board/ti/j721s2/evm.c index b6d1964146d..92d5c849864 100644 --- a/board/ti/j721s2/evm.c +++ b/board/ti/j721s2/evm.c @@ -103,7 +103,7 @@ static struct ti_fdt_map ti_j721s2_evm_fdt_map[] = { static void setup_board_eeprom_env(void) { - char *name = "j721s2"; + char *name = NULL; if (do_board_detect()) goto invalid_eeprom; |
