mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
SELECT_CARD command with zero RCA deselects all cards and so has no reply.
This commit is contained in:
parent
4b0e2b9add
commit
eecec5bd59
1 changed files with 1 additions and 1 deletions
|
|
@ -526,7 +526,7 @@ static int
|
|||
mmc_select_card(struct mmc_softc *sc, uint16_t rca)
|
||||
{
|
||||
return (mmc_wait_for_command(sc, MMC_SELECT_CARD, ((uint32_t)rca) << 16,
|
||||
MMC_RSP_R1B | MMC_CMD_AC, NULL, CMD_RETRIES));
|
||||
(rca?MMC_RSP_R1B:MMC_RSP_NONE) | MMC_CMD_AC, NULL, CMD_RETRIES));
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue