mmc: debugfs: Add HS400 timing mode info in debugfs

Currently ios->timing mode for HS400 mode is missing
from debugfs and thus taken as invalid.
Fix this by adding HS400 timing mode info in
mmc_ios_show.

Change-Id: I49d1e93862d97de6e2f0e2fa5da2b1be03ee60b1
Signed-off-by: Ritesh Harjani <riteshh@codeaurora.org>
This commit is contained in:
Ritesh Harjani 2016-02-04 13:47:45 +05:30 committed by Gerrit - the friendly Code Review server
parent e950ed0c73
commit fdfd38be90
1 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,9 @@ static int mmc_ios_show(struct seq_file *s, void *data)
case MMC_TIMING_MMC_HS200:
str = "mmc high-speed SDR200";
break;
case MMC_TIMING_MMC_HS400:
str = "mmc high-speed HS400";
break;
default:
str = "invalid";
break;