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

Commit 6356a9d9 authored by Pierre Ossman's avatar Pierre Ossman
Browse files

at91_mci: Fix bad reference



The flags parameter got removed in a previous commit, but some
references were overlooked.

Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent ade8c56c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -212,12 +212,12 @@ static int au1xmmc_send_command(struct au1xmmc_host *host, int wait,
	}

	if (data) {
		if (flags & MMC_DATA_READ) {
		if (data->flags & MMC_DATA_READ) {
			if (data->blocks > 1)
				mmccmd |= SD_CMD_CT_4;
			else
				mmccmd |= SD_CMD_CT_2;
		} else if (flags & MMC_DATA_WRITE) {
		} else if (data->flags & MMC_DATA_WRITE) {
			if (data->blocks > 1)
				mmccmd |= SD_CMD_CT_3;
			else