Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1390706 > unrolled thread
| Started by | Shawn Lin <shawn.lin@rock-chips.com> |
|---|---|
| First post | 2016-04-29 04:50 +0200 |
| Last post | 2016-05-09 14:10 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 4/6] mmc: debugfs: add HS400 enhanced strobe description Shawn Lin <shawn.lin@rock-chips.com> - 2016-04-29 04:50 +0200
Re: [PATCH v2 4/6] mmc: debugfs: add HS400 enhanced strobe description Adrian Hunter <adrian.hunter@intel.com> - 2016-05-09 14:10 +0200
| From | Shawn Lin <shawn.lin@rock-chips.com> |
|---|---|
| Date | 2016-04-29 04:50 +0200 |
| Subject | [PATCH v2 4/6] mmc: debugfs: add HS400 enhanced strobe description |
| Message-ID | <rt6Fc-6Ps-17@gated-at.bofh.it> |
We inctroduce HS400 with enhanced strobe function, so we need add it for debug show. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> --- Changes in v2: None drivers/mmc/core/debugfs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c index 9382a57..51d7c38 100644 --- a/drivers/mmc/core/debugfs.c +++ b/drivers/mmc/core/debugfs.c @@ -148,7 +148,9 @@ static int mmc_ios_show(struct seq_file *s, void *data) str = "mmc HS200"; break; case MMC_TIMING_MMC_HS400: - str = "mmc HS400"; + mmc_card_hs400es(host->card) ? + (str = "mmc HS400 enhanced strobe") : + (str = "mmc HS400"); break; default: str = "invalid"; -- 2.3.7
[toc] | [next] | [standalone]
| From | Adrian Hunter <adrian.hunter@intel.com> |
|---|---|
| Date | 2016-05-09 14:10 +0200 |
| Subject | Re: [PATCH v2 4/6] mmc: debugfs: add HS400 enhanced strobe description |
| Message-ID | <rwSaC-5og-19@gated-at.bofh.it> |
| In reply to | #1390706 |
On 29/04/16 05:48, Shawn Lin wrote: > We inctroduce HS400 with enhanced strobe function, so we need inctroduce -> introduced > add it for debug show. add -> to add > > Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> > --- > > Changes in v2: None > > drivers/mmc/core/debugfs.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c > index 9382a57..51d7c38 100644 > --- a/drivers/mmc/core/debugfs.c > +++ b/drivers/mmc/core/debugfs.c > @@ -148,7 +148,9 @@ static int mmc_ios_show(struct seq_file *s, void *data) > str = "mmc HS200"; > break; > case MMC_TIMING_MMC_HS400: > - str = "mmc HS400"; > + mmc_card_hs400es(host->card) ? > + (str = "mmc HS400 enhanced strobe") : > + (str = "mmc HS400"); > break; > default: > str = "invalid"; >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web