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

Commit 6aab8b53 authored by Christian Lütke-Stetzkamp's avatar Christian Lütke-Stetzkamp Committed by Greg Kroah-Hartman
Browse files

staging: mt7621-mmc: Remove unused variable from msdc_tune_request



The variable cmd in the function msdc_tune_request is set but never
used, so remove it.

Signed-off-by: default avatarChristian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a98c1437
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1556,12 +1556,10 @@ static int msdc_check_busy(struct mmc_host *mmc, struct msdc_host *host)
static int msdc_tune_request(struct mmc_host *mmc, struct mmc_request *mrq)
{
	struct msdc_host *host = mmc_priv(mmc);
	struct mmc_command *cmd;
	struct mmc_data *data;
	//u32 base = host->base;
	int ret = 0, read;

	cmd  = mrq->cmd;
	data = mrq->cmd->data;

	read = data->flags & MMC_DATA_READ ? 1 : 0;