u-boot/cmd/mmc.c
.. .. @@ -129,6 +129,7 @@ 129 129 static int do_mmc_test_secure_storage(cmd_tbl_t *cmdtp, 130 130 int flag, int argc, char * const argv[]) 131 131 { 132 +#ifdef CONFIG_MMC132 133 struct mmc *mmc; 133 134 134 135 if (curr_device < 0) { .. .. @@ -143,7 +144,8 @@ 143 144 144 145 mmc = init_mmc_device(curr_device, false); 145 146 if (!mmc) 146 - return CMD_RET_FAILURE;147 + printf("No mmc device\n");148 +#endif147 149 148 150 int i, count = 100; 149 151