devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND] ARM: DTS: correct the capability string for mmc0
@ 2014-09-16  8:50 Vivek Gautam
  2014-09-16 15:58 ` Doug Anderson
  0 siblings, 1 reply; 5+ messages in thread
From: Vivek Gautam @ 2014-09-16  8:50 UTC (permalink / raw)
  To: linux-samsung-soc, devicetree, linux-kernel
  Cc: kgene.kim, dianders, jh80.chung, tgih.jun, javier.martinez,
	khilman, Naveen Krishna Chatradhi

From: Naveen Krishna Chatradhi <ch.naveen@samsung.com>

MMC capability for HS200 is parsed in mmc/core/host.c as
dts string "mmc-hs200-1_8v".

This patch corrects the dts string for Exynos5420 based peach-pit
and Exynos5800 based peach-pi boards.

Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
---

Hi Kukjin,

As commented by Doug earlier for this patch, the two patches required
  -- mmc: dw_mmc: Make sure we don't get stuck when we get an error
  -- mmc: dw_mmc: change to use recommended reset procedure
are now merged in upstream.
So you can go ahead and pick this change.

 arch/arm/boot/dts/exynos5420-peach-pit.dts |    2 +-
 arch/arm/boot/dts/exynos5800-peach-pi.dts  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/exynos5420-peach-pit.dts b/arch/arm/boot/dts/exynos5420-peach-pit.dts
index 9a23382..e52ed04 100644
--- a/arch/arm/boot/dts/exynos5420-peach-pit.dts
+++ b/arch/arm/boot/dts/exynos5420-peach-pit.dts
@@ -560,7 +560,7 @@
 	status = "okay";
 	num-slots = <1>;
 	broken-cd;
-	caps2-mmc-hs200-1_8v;
+	mmc-hs200-1_8v;
 	cap-mmc-highspeed;
 	non-removable;
 	card-detect-delay = <200>;
diff --git a/arch/arm/boot/dts/exynos5800-peach-pi.dts b/arch/arm/boot/dts/exynos5800-peach-pi.dts
index 1d31c81..8616fbd 100644
--- a/arch/arm/boot/dts/exynos5800-peach-pi.dts
+++ b/arch/arm/boot/dts/exynos5800-peach-pi.dts
@@ -548,7 +548,7 @@
 	status = "okay";
 	num-slots = <1>;
 	broken-cd;
-	caps2-mmc-hs200-1_8v;
+	mmc-hs200-1_8v;
 	cap-mmc-highspeed;
 	non-removable;
 	card-detect-delay = <200>;
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH RESEND] ARM: DTS: correct the capability string for mmc0
  2014-09-16  8:50 [PATCH RESEND] ARM: DTS: correct the capability string for mmc0 Vivek Gautam
@ 2014-09-16 15:58 ` Doug Anderson
  2014-09-17 12:09   ` Kukjin Kim
  0 siblings, 1 reply; 5+ messages in thread
From: Doug Anderson @ 2014-09-16 15:58 UTC (permalink / raw)
  To: Vivek Gautam
  Cc: linux-samsung-soc, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, Kukjin Kim, Jaehoon Chung,
	Seungwon Jeon, Javier Martinez Canillas, Kevin Hilman,
	Naveen Krishna Chatradhi

Vivek,

On Tue, Sep 16, 2014 at 1:50 AM, Vivek Gautam <gautam.vivek@samsung.com> wrote:
> From: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
>
> MMC capability for HS200 is parsed in mmc/core/host.c as
> dts string "mmc-hs200-1_8v".
>
> This patch corrects the dts string for Exynos5420 based peach-pit
> and Exynos5800 based peach-pi boards.
>
> Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
> ---
>
> Hi Kukjin,
>
> As commented by Doug earlier for this patch, the two patches required
>   -- mmc: dw_mmc: Make sure we don't get stuck when we get an error
>   -- mmc: dw_mmc: change to use recommended reset procedure
> are now merged in upstream.
> So you can go ahead and pick this change.
>
>  arch/arm/boot/dts/exynos5420-peach-pit.dts |    2 +-
>  arch/arm/boot/dts/exynos5800-peach-pi.dts  |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Doug Anderson <dianders@chromium.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH RESEND] ARM: DTS: correct the capability string for mmc0
  2014-09-16 15:58 ` Doug Anderson
@ 2014-09-17 12:09   ` Kukjin Kim
  2014-09-17 12:13     ` Vivek Gautam
  0 siblings, 1 reply; 5+ messages in thread
From: Kukjin Kim @ 2014-09-17 12:09 UTC (permalink / raw)
  To: 'Doug Anderson', 'Vivek Gautam'
  Cc: 'linux-samsung-soc', devicetree, linux-kernel,
	'Jaehoon Chung', 'Seungwon Jeon',
	'Javier Martinez Canillas', 'Kevin Hilman',
	'Naveen Krishna Chatradhi'

Doug Anderson wrote:
> 
> Vivek,
> 
Hi,

> On Tue, Sep 16, 2014 at 1:50 AM, Vivek Gautam <gautam.vivek@samsung.com> wrote:
> > From: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
> >
> > MMC capability for HS200 is parsed in mmc/core/host.c as
> > dts string "mmc-hs200-1_8v".
> >
> > This patch corrects the dts string for Exynos5420 based peach-pit
> > and Exynos5800 based peach-pi boards.
> >
> > Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>

In this case, Vivek's sign is required here.

> > ---
> >
> > Hi Kukjin,
> >
> > As commented by Doug earlier for this patch, the two patches required
> >   -- mmc: dw_mmc: Make sure we don't get stuck when we get an error
> >   -- mmc: dw_mmc: change to use recommended reset procedure
> > are now merged in upstream.
> > So you can go ahead and pick this change.
> >
> >  arch/arm/boot/dts/exynos5420-peach-pit.dts |    2 +-
> >  arch/arm/boot/dts/exynos5800-peach-pi.dts  |    2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> Reviewed-by: Doug Anderson <dianders@chromium.org>

Thanks, I will take this patch once Vivek replies his sign on this patch.

- Kukjin

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH RESEND] ARM: DTS: correct the capability string for mmc0
  2014-09-17 12:09   ` Kukjin Kim
@ 2014-09-17 12:13     ` Vivek Gautam
  2014-09-17 12:19       ` Vivek Gautam
  0 siblings, 1 reply; 5+ messages in thread
From: Vivek Gautam @ 2014-09-17 12:13 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: Doug Anderson, linux-samsung-soc,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Jaehoon Chung, Seungwon Jeon, Javier Martinez Canillas,
	Kevin Hilman, Naveen Krishna Chatradhi

Hi Kukjin,


On Wed, Sep 17, 2014 at 5:39 PM, Kukjin Kim <kgene-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> Doug Anderson wrote:
>>
>> Vivek,
>>
> Hi,
>
>> On Tue, Sep 16, 2014 at 1:50 AM, Vivek Gautam <gautam.vivek-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> wrote:
>> > From: Naveen Krishna Chatradhi <ch.naveen-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> >
>> > MMC capability for HS200 is parsed in mmc/core/host.c as
>> > dts string "mmc-hs200-1_8v".
>> >
>> > This patch corrects the dts string for Exynos5420 based peach-pit
>> > and Exynos5800 based peach-pi boards.
>> >
>> > Signed-off-by: Naveen Krishna Chatradhi <ch.naveen-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>
> In this case, Vivek's sign is required here.

Ok, i will resend it with my Signed-off

>
>> > ---
>> >
>> > Hi Kukjin,
>> >
>> > As commented by Doug earlier for this patch, the two patches required
>> >   -- mmc: dw_mmc: Make sure we don't get stuck when we get an error
>> >   -- mmc: dw_mmc: change to use recommended reset procedure
>> > are now merged in upstream.
>> > So you can go ahead and pick this change.
>> >
>> >  arch/arm/boot/dts/exynos5420-peach-pit.dts |    2 +-
>> >  arch/arm/boot/dts/exynos5800-peach-pi.dts  |    2 +-
>> >  2 files changed, 2 insertions(+), 2 deletions(-)
>>
>> Reviewed-by: Doug Anderson <dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
>
> Thanks, I will take this patch once Vivek replies his sign on this patch.
>
> - Kukjin
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Best Regards
Vivek Gautam
Samsung R&D Institute, Bangalore
India
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH RESEND] ARM: DTS: correct the capability string for mmc0
  2014-09-17 12:13     ` Vivek Gautam
@ 2014-09-17 12:19       ` Vivek Gautam
  0 siblings, 0 replies; 5+ messages in thread
From: Vivek Gautam @ 2014-09-17 12:19 UTC (permalink / raw)
  To: Kukjin Kim
  Cc: Doug Anderson, linux-samsung-soc, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, Jaehoon Chung, Seungwon Jeon,
	Javier Martinez Canillas, Kevin Hilman, Naveen Krishna Chatradhi

On Wed, Sep 17, 2014 at 5:43 PM, Vivek Gautam <gautam.vivek@samsung.com> wrote:
> Hi Kukjin,
>
>
> On Wed, Sep 17, 2014 at 5:39 PM, Kukjin Kim <kgene@kernel.org> wrote:
>> Doug Anderson wrote:
>>>
>>> Vivek,
>>>
>> Hi,
>>
>>> On Tue, Sep 16, 2014 at 1:50 AM, Vivek Gautam <gautam.vivek@samsung.com> wrote:
>>> > From: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
>>> >
>>> > MMC capability for HS200 is parsed in mmc/core/host.c as
>>> > dts string "mmc-hs200-1_8v".
>>> >
>>> > This patch corrects the dts string for Exynos5420 based peach-pit
>>> > and Exynos5800 based peach-pi boards.
>>> >
>>> > Signed-off-by: Naveen Krishna Chatradhi <ch.naveen@samsung.com>
>>
>> In this case, Vivek's sign is required here.
>
> Ok, i will resend it with my Signed-off.
>
>>
>>> > ---
>>> >
>>> > Hi Kukjin,
>>> >
>>> > As commented by Doug earlier for this patch, the two patches required
>>> >   -- mmc: dw_mmc: Make sure we don't get stuck when we get an error
>>> >   -- mmc: dw_mmc: change to use recommended reset procedure
>>> > are now merged in upstream.
>>> > So you can go ahead and pick this change.
>>> >
>>> >  arch/arm/boot/dts/exynos5420-peach-pit.dts |    2 +-
>>> >  arch/arm/boot/dts/exynos5800-peach-pi.dts  |    2 +-
>>> >  2 files changed, 2 insertions(+), 2 deletions(-)
>>>
>>> Reviewed-by: Doug Anderson <dianders@chromium.org>
>>
>> Thanks, I will take this patch once Vivek replies his sign on this patch.

As suggested, giving  my signed-off here:
Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>




-- 
Best Regards
Vivek Gautam
Samsung R&D Institute, Bangalore
India

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-17 12:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-16  8:50 [PATCH RESEND] ARM: DTS: correct the capability string for mmc0 Vivek Gautam
2014-09-16 15:58 ` Doug Anderson
2014-09-17 12:09   ` Kukjin Kim
2014-09-17 12:13     ` Vivek Gautam
2014-09-17 12:19       ` Vivek Gautam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).