Lines Matching defs:resp
402 u32 resp[4];
404 resp[0] = cb710_read_port_32(slot, CB710_MMC_RESPONSE3_PORT);
405 resp[1] = cb710_read_port_32(slot, CB710_MMC_RESPONSE2_PORT);
406 resp[2] = cb710_read_port_32(slot, CB710_MMC_RESPONSE1_PORT);
407 resp[3] = cb710_read_port_32(slot, CB710_MMC_RESPONSE0_PORT);
408 rsp_opcode = resp[0] >> 24;
410 cmd->resp[0] = (resp[0] << 8)|(resp[1] >> 24);
411 cmd->resp[1] = (resp[1] << 8)|(resp[2] >> 24);
412 cmd->resp[2] = (resp[2] << 8)|(resp[3] >> 24);
413 cmd->resp[3] = (resp[3] << 8);
416 cmd->resp[0] = cb710_read_port_32(slot, CB710_MMC_RESPONSE0_PORT);