Searched refs:autobkops (Results 1 - 3 of 3) sorted by last modified time

/u-boot/include/
H A Dmmc.h905 * @param autobkops Enable automatic bkops, not manual bkops
912 int mmc_set_bkops_enable(struct mmc *mmc, bool autobkops, bool enable);
/u-boot/drivers/mmc/
H A Dmmc.c3174 int mmc_set_bkops_enable(struct mmc *mmc, bool autobkops, bool enable) argument
3177 u32 bit = autobkops ? BIT(1) : BIT(0);
3205 enable ? "En" : "Dis", autobkops ? "auto" : "manual");
/u-boot/cmd/
H A Dmmc.c1031 static int mmc_bkops_common(char *device, bool autobkops, bool enable) argument
1047 return mmc_set_bkops_enable(mmc, autobkops, enable);
1053 bool autobkops, enable; local
1059 autobkops = false;
1061 autobkops = true;
1072 return mmc_bkops_common(argv[1], autobkops, enable);

Completed in 65 milliseconds