Re: [PATCH 3/5] arm: omap2: skip device build from platform code for dt.

2014-04-29 Thread sourav

On Tuesday 29 April 2014 12:09 AM, Felipe Balbi wrote:

On Mon, Apr 28, 2014 at 06:28:45PM +, Paul Walmsley wrote:

On Wed, 16 Apr 2014, Sourav Poddar wrote:


For SOCs with dt enabled, device should be build through device tree.
Prevent device build call from platform code, if device tree is
enabled.

Signed-off-by: Sourav Poddar

Isn't OMAP2+ only supporting DT device enumeration now?

At least OMAP3 still isn't Dt-only.


Yes, for omap3 boards only, I have kept a #ifndef. Else we could
have remove this code.
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 3/5] arm: omap2: skip device build from platform code for dt.

2014-04-28 Thread Paul Walmsley
On Wed, 16 Apr 2014, Sourav Poddar wrote:

> For SOCs with dt enabled, device should be build through device tree.
> Prevent device build call from platform code, if device tree is
> enabled.
> 
> Signed-off-by: Sourav Poddar 

Isn't OMAP2+ only supporting DT device enumeration now?


- Paul
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 3/5] arm: omap2: skip device build from platform code for dt.

2014-04-28 Thread Felipe Balbi
On Mon, Apr 28, 2014 at 06:28:45PM +, Paul Walmsley wrote:
> On Wed, 16 Apr 2014, Sourav Poddar wrote:
> 
> > For SOCs with dt enabled, device should be build through device tree.
> > Prevent device build call from platform code, if device tree is
> > enabled.
> > 
> > Signed-off-by: Sourav Poddar 
> 
> Isn't OMAP2+ only supporting DT device enumeration now?

At least OMAP3 still isn't Dt-only.

-- 
balbi


signature.asc
Description: Digital signature


[PATCH 3/5] arm: omap2: skip device build from platform code for dt.

2014-04-16 Thread Sourav Poddar
For SOCs with dt enabled, device should be build through device tree.
Prevent device build call from platform code, if device tree is
enabled.

Signed-off-by: Sourav Poddar 
---
 arch/arm/mach-omap2/hdq1w.c |2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/mach-omap2/hdq1w.c b/arch/arm/mach-omap2/hdq1w.c
index cbc8e3c..f78b4a1 100644
--- a/arch/arm/mach-omap2/hdq1w.c
+++ b/arch/arm/mach-omap2/hdq1w.c
@@ -76,6 +76,7 @@ int omap_hdq1w_reset(struct omap_hwmod *oh)
return 0;
 }
 
+#ifndef CONFIG_OF
 static int __init omap_init_hdq(void)
 {
int id = -1;
@@ -95,3 +96,4 @@ static int __init omap_init_hdq(void)
return 0;
 }
 omap_arch_initcall(omap_init_hdq);
+#endif
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html