Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3df66e77 authored by Ulf Hansson's avatar Ulf Hansson
Browse files

mmc: core: Remove redundant code in mmc_send_cid()



The mmc_send_cid() is never called using non SPI mode. Thus, let's remove
the redundant code dealing with this.

Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarShawn Lin <shawn.lin@rock-chips.com>
parent 88bed3a6
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -339,13 +339,6 @@ int mmc_send_cid(struct mmc_host *host, u32 *cid)
	int ret, i;
	__be32 *cid_tmp;

	if (!mmc_host_is_spi(host)) {
		if (!host->card)
			return -EINVAL;
		return mmc_send_cxd_native(host, host->card->rca << 16,
				cid, MMC_SEND_CID);
	}

	cid_tmp = kzalloc(16, GFP_KERNEL);
	if (!cid_tmp)
		return -ENOMEM;