Home
last modified time | relevance | path

Searched refs:appcmd (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/dev/mmc/
H A Dmmc_subr.c109 struct mmc_command appcmd; in mmc_wait_for_app_cmd() local
118 memset(&appcmd, 0, sizeof(appcmd)); in mmc_wait_for_app_cmd()
119 appcmd.opcode = MMC_APP_CMD; in mmc_wait_for_app_cmd()
120 appcmd.arg = (uint32_t)rca << 16; in mmc_wait_for_app_cmd()
121 appcmd.flags = MMC_RSP_R1 | MMC_CMD_AC; in mmc_wait_for_app_cmd()
122 if (mmc_wait_for_cmd(busdev, dev, &appcmd, 0) != 0) in mmc_wait_for_app_cmd()
125 err = appcmd.error; in mmc_wait_for_app_cmd()
127 if (!(appcmd.resp[0] & R1_APP_CMD)) in mmc_wait_for_app_cmd()