mmc: debugfs: correct wrong voltage value
Correct the wrong voltage value shown in debugfs for mmc/sd/sdio.
Signed-off-by: Chuanxiao Dong <chuanxiao.dong@intel.com>
Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Fixes: 42cd95a060
("mmc: core: debugfs: Add signal_voltage to ios dump")
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
d50f42384d
commit
0036e74686
|
@ -170,7 +170,7 @@ static int mmc_ios_show(struct seq_file *s, void *data)
|
||||||
str = "invalid";
|
str = "invalid";
|
||||||
break;
|
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) {
|
switch (ios->drv_type) {
|
||||||
case MMC_SET_DRIVER_TYPE_A:
|
case MMC_SET_DRIVER_TYPE_A:
|
||||||
|
|
Loading…
Reference in New Issue