mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-22 18:06:40 +00:00
sdmmc: Ensure writes gone through after disabling io power
This commit is contained in:
parent
7aa1e77642
commit
f6a3b2c9ac
1 changed files with 1 additions and 1 deletions
|
@ -1371,12 +1371,12 @@ void sdmmc_end(sdmmc_t *sdmmc)
|
||||||
_sdmmc_sd_clock_disable(sdmmc);
|
_sdmmc_sd_clock_disable(sdmmc);
|
||||||
// Disable SDMMC power.
|
// Disable SDMMC power.
|
||||||
_sdmmc_set_io_power(sdmmc, SDMMC_POWER_OFF);
|
_sdmmc_set_io_power(sdmmc, SDMMC_POWER_OFF);
|
||||||
|
_sdmmc_commit_changes(sdmmc);
|
||||||
|
|
||||||
// Disable SD card power.
|
// Disable SD card power.
|
||||||
if (sdmmc->id == SDMMC_1)
|
if (sdmmc->id == SDMMC_1)
|
||||||
sdmmc1_disable_power();
|
sdmmc1_disable_power();
|
||||||
|
|
||||||
_sdmmc_commit_changes(sdmmc);
|
|
||||||
clock_sdmmc_disable(sdmmc->id);
|
clock_sdmmc_disable(sdmmc->id);
|
||||||
sdmmc->clock_stopped = 1;
|
sdmmc->clock_stopped = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue