projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1590dd
)
mmc: debugfs: implement ios show for SDR12 and SDR25
author
Shawn Lin
<shawn.lin@rock-chips.com>
Thu, 24 Sep 2015 00:13:43 +0000
(08:13 +0800)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Mon, 26 Oct 2015 15:00:02 +0000
(16:00 +0100)
This patch add MMC_TIMING_UHS_SDR12 and MMC_TIMING_UHS_SDR25
for mmc_ios_show to show the ios->timing if mmc card runs under
these two modes.
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/core/debugfs.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mmc/core/debugfs.c
b/drivers/mmc/core/debugfs.c
index 9adba8d559805e2ebb02bae0f0a35b25b824201e..f4db93e03e886de4f4b682463707bf0829fb6388 100644
(file)
--- a/
drivers/mmc/core/debugfs.c
+++ b/
drivers/mmc/core/debugfs.c
@@
-126,6
+126,12
@@
static int mmc_ios_show(struct seq_file *s, void *data)
case MMC_TIMING_SD_HS:
str = "sd high-speed";
break;
+ case MMC_TIMING_UHS_SDR12:
+ str = "sd uhs SDR12";
+ break;
+ case MMC_TIMING_UHS_SDR25:
+ str = "sd uhs SDR25";
+ break;
case MMC_TIMING_UHS_SDR50:
str = "sd uhs SDR50";
break;