drop Environment variable mmcautodetect and the board logic behind it, as we want always to autodetct the emmc device.
Signed-off-by: Heiko Schocher <[email protected]> --- board/siemens/capricorn/board.c | 13 ------------- board/siemens/capricorn/capricorn_default.env | 1 - 2 files changed, 14 deletions(-) diff --git a/board/siemens/capricorn/board.c b/board/siemens/capricorn/board.c index d4f26b6ff7f..bce343714eb 100644 --- a/board/siemens/capricorn/board.c +++ b/board/siemens/capricorn/board.c @@ -357,16 +357,6 @@ int board_mmc_get_env_dev(int devno) return devno; } -static int check_mmc_autodetect(void) -{ - char *autodetect_str = env_get("mmcautodetect"); - - if (autodetect_str && (strcmp(autodetect_str, "yes") == 0)) - return 1; - - return 0; -} - /* This should be defined for each board */ __weak int mmc_map_to_kernel_blk(int dev_no) { @@ -377,9 +367,6 @@ void board_late_mmc_env_init(void) { u32 dev_no = mmc_get_env_dev(); - if (!check_mmc_autodetect()) - return; - env_set_ulong("mmcdev", dev_no); } diff --git a/board/siemens/capricorn/capricorn_default.env b/board/siemens/capricorn/capricorn_default.env index c8b5b3d7da3..ad88f7ed770 100644 --- a/board/siemens/capricorn/capricorn_default.env +++ b/board/siemens/capricorn/capricorn_default.env @@ -45,4 +45,3 @@ kboot=booti bootcmd_mfg=run mfgtool_args; if iminfo ${initrd_addr}; then if test ${tee} = yes; then bootm ${tee_addr} ${initrd_addr} ${fdt_addr}; else booti ${loadaddr} ${initrd_addr} ${fdt_addr}; fi; else echo "Run fastboot ..."; fastboot usb auto; fi; fastboot_bytes=124c00 fastboot_dev=mmc -mmcautodetect=yes -- 2.20.1

