mirror of
https://github.com/CTCaer/hekate
synced 2024-12-22 19:31:12 +00:00
sdmmc: Correct bus speed for SDR25
Fix bus speed on SDR25 even if all UHS cards support SDR50 and SDR104.
This commit is contained in:
parent
4166a3c128
commit
55395ea4fd
1 changed files with 1 additions and 1 deletions
|
@ -994,7 +994,7 @@ DPRINTF("[SD] bus speed set to SDR50\n");
|
||||||
if (access_mode & SD_MODE_UHS_SDR25)
|
if (access_mode & SD_MODE_UHS_SDR25)
|
||||||
{
|
{
|
||||||
type = SDHCI_TIMING_UHS_SDR25;
|
type = SDHCI_TIMING_UHS_SDR25;
|
||||||
hs_type = UHS_SDR50_BUS_SPEED;
|
hs_type = UHS_SDR25_BUS_SPEED;
|
||||||
DPRINTF("[SD] bus speed set to SDR25\n");
|
DPRINTF("[SD] bus speed set to SDR25\n");
|
||||||
storage->csd.busspeed = 25;
|
storage->csd.busspeed = 25;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue