aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorAaron Lu <aaron.lu@amd.com>2011-09-02 04:06:08 -0400
committerChris Ball <cjb@laptop.org>2011-10-26 16:32:10 -0400
commitcd8a3666987ba20908bbeb7c78ed9ba82b365643 (patch)
tree70d34078711456023c6363795a6cddda29f68d4d /drivers/mmc
parent714c4a6e3a0f730834ec8a8bc83b2a6da33f54dc (diff)
mmc: core: add sd uhs string for mmc_ios_show
This is a minor fix. It makes mmc_ios_show print proper string when the host's timing is one of the newly added UHS-I modes. Signed-off-by: Aaron Lu <aaron.lu@amd.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/core/debugfs.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c
index 5acd707699c9..96c603b0526f 100644
--- a/drivers/mmc/core/debugfs.c
+++ b/drivers/mmc/core/debugfs.c
@@ -114,6 +114,15 @@ static int mmc_ios_show(struct seq_file *s, void *data)
114 case MMC_TIMING_SD_HS: 114 case MMC_TIMING_SD_HS:
115 str = "sd high-speed"; 115 str = "sd high-speed";
116 break; 116 break;
117 case MMC_TIMING_UHS_SDR50:
118 str = "sd uhs SDR50";
119 break;
120 case MMC_TIMING_UHS_SDR104:
121 str = "sd uhs SDR104";
122 break;
123 case MMC_TIMING_UHS_DDR50:
124 str = "sd uhs DDR50";
125 break;
117 default: 126 default:
118 str = "invalid"; 127 str = "invalid";
119 break; 128 break;