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

Commit 0036e746 authored by Chuanxiao Dong's avatar Chuanxiao Dong Committed by Ulf Hansson
Browse files

mmc: debugfs: correct wrong voltage value



Correct the wrong voltage value shown in debugfs for mmc/sd/sdio.

Signed-off-by: default avatarChuanxiao Dong <chuanxiao.dong@intel.com>
Signed-off-by: default avatarPawel Wodkowski <pawelx.wodkowski@intel.com>
Fixes: 42cd95a0 ("mmc: core: debugfs: Add signal_voltage to ios dump")
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent d50f4238
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ static int mmc_ios_show(struct seq_file *s, void *data)
		str = "invalid";
		break;
	}
	seq_printf(s, "signal voltage:\t%u (%s)\n", ios->chip_select, str);
	seq_printf(s, "signal voltage:\t%u (%s)\n", ios->signal_voltage, str);

	switch (ios->drv_type) {
	case MMC_SET_DRIVER_TYPE_A: