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

Commit 57de8a67 authored by Sahitya Tummala's avatar Sahitya Tummala Committed by Matt Wagantall
Browse files

mmc: block: add req pointer to mmc request



This is needed by ICE (Inline Crypto Engine) driver to get
the ICE configuration data from the request.

Change-Id: Ie69c64f4dc0c31290dec50d905e8b3d436c86d62
Signed-off-by: default avatarSahitya Tummala <stummala@codeaurora.org>
Signed-off-by: default avatarVenkat Gopalakrishnan <venkatg@codeaurora.org>
parent 53695127
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1842,6 +1842,7 @@ static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq,
	}

	mqrq->mmc_active.mrq = &brq->mrq;
	mqrq->mmc_active.mrq->req = mqrq->req;
	mqrq->mmc_active.err_check = mmc_blk_err_check;

	mmc_queue_bounce_pre(mqrq);
+1 −0
Original line number Diff line number Diff line
@@ -107,6 +107,7 @@ struct mmc_request {
	struct completion	completion;
	void			(*done)(struct mmc_request *);/* completion function */
	struct mmc_host		*host;
	struct request *req;
};

struct mmc_card;