> > + opcode = card->ext_csd.hpi_cmd; > > + if (opcode == MMC_STOP_TRANSMISSION) > > + flags = MMC_RSP_R1B | MMC_CMD_AC; > > + else if (opcode == MMC_SEND_STATUS) > > + flags = MMC_RSP_R1 | MMC_CMD_AC; > > + else > > + return -EINVAL; > > + > > + memset(&cmd, 0, sizeof(struct mmc_command)); > > + cmd.opcode = opcode; > > + cmd.arg = card->rca << 16 | 1; > Maybe missing set the flags; > cmd.flags = flags; > > Thank you, > Kyungmin Park Thank you Park, will fix these bad mistake in the next version submission. -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html