* [PATCH 0/3] ARM: OMAP: fix compilation problems with v3.3-rc1 @ 2012-01-22 11:02 Paul Walmsley 2012-01-22 11:02 ` [PATCH 1/3] ARM: OMAP: PRM: fix missing plat/irqs.h build breakage Paul Walmsley ` (2 more replies) 0 siblings, 3 replies; 11+ messages in thread From: Paul Walmsley @ 2012-01-22 11:02 UTC (permalink / raw) To: linux-omap, linux-arm-kernel Fix several compilation problems detected with a 2420-only kernel configuration. This series is intended for the v3.3-rc merge window. These patches are available via git at git://git.pwsan.com/linux-2.6 in the branch "omap2420_compilation_fixes_3.3rc" - Paul --- Paul Walmsley (3): ARM: OMAP: PRM: fix missing plat/irqs.h build breakage ARM: OMAP2+: io: fix compilation breakage on 2420-only configs ARM: OMAP: I2C: fix compilation when !CONFIG_OF arch/arm/mach-omap2/io.c | 4 +++- arch/arm/mach-omap2/prm2xxx_3xxx.c | 1 + drivers/i2c/busses/i2c-omap.c | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/3] ARM: OMAP: PRM: fix missing plat/irqs.h build breakage 2012-01-22 11:02 [PATCH 0/3] ARM: OMAP: fix compilation problems with v3.3-rc1 Paul Walmsley @ 2012-01-22 11:02 ` Paul Walmsley 2012-01-22 11:02 ` [PATCH 2/3] ARM: OMAP2+: io: fix compilation breakage on 2420-only configs Paul Walmsley 2012-01-22 11:02 ` [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF Paul Walmsley 2 siblings, 0 replies; 11+ messages in thread From: Paul Walmsley @ 2012-01-22 11:02 UTC (permalink / raw) To: linux-omap, linux-arm-kernel; +Cc: Tero Kristo, Kevin Hilman Commit 22f51371f8c35869ed850f46aa76b6cc2b502110 ("ARM: OMAP3: pm: use prcm chain handler") breaks the build on a 2420-only config, due to a missing include for plat/irqs.h: CC arch/arm/mach-omap2/prm2xxx_3xxx.o arch/arm/mach-omap2/prm2xxx_3xxx.c:41:11: error: 'INT_34XX_PRCM_MPU_IRQ' undeclared here (not in a function) Fix by explicitly including it. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Tero Kristo <t-kristo@ti.com> Cc: Kevin Hilman <khilman@ti.com> --- arch/arm/mach-omap2/prm2xxx_3xxx.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c index c1c4d86..9ce7654 100644 --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c @@ -19,6 +19,7 @@ #include "common.h" #include <plat/cpu.h> #include <plat/prcm.h> +#include <plat/irqs.h> #include "vp.h" ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] ARM: OMAP2+: io: fix compilation breakage on 2420-only configs 2012-01-22 11:02 [PATCH 0/3] ARM: OMAP: fix compilation problems with v3.3-rc1 Paul Walmsley 2012-01-22 11:02 ` [PATCH 1/3] ARM: OMAP: PRM: fix missing plat/irqs.h build breakage Paul Walmsley @ 2012-01-22 11:02 ` Paul Walmsley 2012-01-22 11:02 ` [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF Paul Walmsley 2 siblings, 0 replies; 11+ messages in thread From: Paul Walmsley @ 2012-01-22 11:02 UTC (permalink / raw) To: linux-omap, linux-arm-kernel; +Cc: Tony Lindgren Commit 7b250aff1ce346b6c7bc0329a2350334d1c66525 ("ARM: OMAP: Avoid cpu_is_omapxxxx usage until map_io is done") breaks the build on a 2420-only config on v3.3-rc1: arch/arm/mach-omap2/built-in.o: In function `omap2430_init_early': arch/arm/mach-omap2/io.c:406: undefined reference to `omap2_set_globals_243x' arch/arm/mach-omap2/io.c:410: undefined reference to `omap243x_clockdomains_init' arch/arm/mach-omap2/io.c:411: undefined reference to `omap2430_hwmod_init' Fix by only compiling omap2420_init_early() when CONFIG_SOC_OMAP2420 is selected, and only compiling omap2430_init_early() when CONFIG_SOC_OMAP2430 is selected. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Tony Lindgren <tony@atomide.com> --- arch/arm/mach-omap2/io.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 3f174d5..eb50c29 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c @@ -388,7 +388,7 @@ static void __init omap_hwmod_init_postsetup(void) omap_pm_if_early_init(); } -#ifdef CONFIG_ARCH_OMAP2 +#ifdef CONFIG_SOC_OMAP2420 void __init omap2420_init_early(void) { omap2_set_globals_242x(); @@ -400,7 +400,9 @@ void __init omap2420_init_early(void) omap_hwmod_init_postsetup(); omap2420_clk_init(); } +#endif +#ifdef CONFIG_SOC_OMAP2430 void __init omap2430_init_early(void) { omap2_set_globals_243x(); ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 11:02 [PATCH 0/3] ARM: OMAP: fix compilation problems with v3.3-rc1 Paul Walmsley 2012-01-22 11:02 ` [PATCH 1/3] ARM: OMAP: PRM: fix missing plat/irqs.h build breakage Paul Walmsley 2012-01-22 11:02 ` [PATCH 2/3] ARM: OMAP2+: io: fix compilation breakage on 2420-only configs Paul Walmsley @ 2012-01-22 11:02 ` Paul Walmsley 2012-01-22 15:40 ` Rob Herring 2012-01-22 15:45 ` Grant Likely 2 siblings, 2 replies; 11+ messages in thread From: Paul Walmsley @ 2012-01-22 11:02 UTC (permalink / raw) To: linux-omap, linux-arm-kernel Cc: Grant Likely, Kevin Hilman, Tony Lindgren, Benoit Cousson, Rob Herring Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT support for i2c controller") breaks compilation when CONFIG_OF is not defined: CC drivers/i2c/busses/i2c-omap.o drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in Fix this by avoiding of_*() functions when !CONFIG_OF. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Benoit Cousson <b-cousson@ti.com> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Kevin Hilman <khilman@ti.com> Cc: Tony Lindgren <tony@atomide.com> --- drivers/i2c/busses/i2c-omap.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index f713eac..1008e96 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c @@ -989,7 +989,7 @@ omap_i2c_probe(struct platform_device *pdev) struct resource *mem, *irq, *ioarea; struct omap_i2c_bus_platform_data *pdata = pdev->dev.platform_data; struct device_node *node = pdev->dev.of_node; - const struct of_device_id *match; + const struct of_device_id *match = NULL; irq_handler_t isr; int r; @@ -1018,7 +1018,9 @@ omap_i2c_probe(struct platform_device *pdev) goto err_release_region; } +#ifdef CONFIG_OF match = of_match_device(omap_i2c_of_match, &pdev->dev); +#endif if (match) { u32 freq = 100000; /* default to 100000 Hz */ ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 11:02 ` [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF Paul Walmsley @ 2012-01-22 15:40 ` Rob Herring 2012-01-22 15:46 ` Grant Likely 2012-01-22 15:45 ` Grant Likely 1 sibling, 1 reply; 11+ messages in thread From: Rob Herring @ 2012-01-22 15:40 UTC (permalink / raw) To: Paul Walmsley Cc: linux-omap, linux-arm-kernel, Grant Likely, Kevin Hilman, Tony Lindgren, Benoit Cousson, Rob Herring On 01/22/2012 05:02 AM, Paul Walmsley wrote: > Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT > support for i2c controller") breaks compilation when CONFIG_OF is not > defined: > > CC drivers/i2c/busses/i2c-omap.o > drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': > drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) > drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in > > Fix this by avoiding of_*() functions when !CONFIG_OF. > > Signed-off-by: Paul Walmsley <paul@pwsan.com> > Cc: Benoit Cousson <b-cousson@ti.com> > Cc: Rob Herring <rob.herring@calxeda.com> > Cc: Grant Likely <grant.likely@secretlab.ca> > Cc: Kevin Hilman <khilman@ti.com> > Cc: Tony Lindgren <tony@atomide.com> > --- > drivers/i2c/busses/i2c-omap.c | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c > index f713eac..1008e96 100644 > --- a/drivers/i2c/busses/i2c-omap.c > +++ b/drivers/i2c/busses/i2c-omap.c > @@ -989,7 +989,7 @@ omap_i2c_probe(struct platform_device *pdev) > struct resource *mem, *irq, *ioarea; > struct omap_i2c_bus_platform_data *pdata = pdev->dev.platform_data; > struct device_node *node = pdev->dev.of_node; > - const struct of_device_id *match; > + const struct of_device_id *match = NULL; > irq_handler_t isr; > int r; > > @@ -1018,7 +1018,9 @@ omap_i2c_probe(struct platform_device *pdev) > goto err_release_region; > } > > +#ifdef CONFIG_OF > match = of_match_device(omap_i2c_of_match, &pdev->dev); > +#endif How about an empty function for of_match_device instead to avoid the ifdef. Rob > if (match) { > u32 freq = 100000; /* default to 100000 Hz */ > > > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 15:40 ` Rob Herring @ 2012-01-22 15:46 ` Grant Likely 0 siblings, 0 replies; 11+ messages in thread From: Grant Likely @ 2012-01-22 15:46 UTC (permalink / raw) To: Rob Herring Cc: Paul Walmsley, linux-omap, linux-arm-kernel, Kevin Hilman, Tony Lindgren, Benoit Cousson, Rob Herring On Sun, Jan 22, 2012 at 8:40 AM, Rob Herring <robherring2@gmail.com> wrote: > On 01/22/2012 05:02 AM, Paul Walmsley wrote: >> Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT >> support for i2c controller") breaks compilation when CONFIG_OF is not >> defined: >> >> CC drivers/i2c/busses/i2c-omap.o >> drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': >> drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) >> drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in >> >> Fix this by avoiding of_*() functions when !CONFIG_OF. >> >> Signed-off-by: Paul Walmsley <paul@pwsan.com> >> Cc: Benoit Cousson <b-cousson@ti.com> >> Cc: Rob Herring <rob.herring@calxeda.com> >> Cc: Grant Likely <grant.likely@secretlab.ca> >> Cc: Kevin Hilman <khilman@ti.com> >> Cc: Tony Lindgren <tony@atomide.com> >> --- >> drivers/i2c/busses/i2c-omap.c | 4 +++- >> 1 files changed, 3 insertions(+), 1 deletions(-) >> >> diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c >> index f713eac..1008e96 100644 >> --- a/drivers/i2c/busses/i2c-omap.c >> +++ b/drivers/i2c/busses/i2c-omap.c >> @@ -989,7 +989,7 @@ omap_i2c_probe(struct platform_device *pdev) >> struct resource *mem, *irq, *ioarea; >> struct omap_i2c_bus_platform_data *pdata = pdev->dev.platform_data; >> struct device_node *node = pdev->dev.of_node; >> - const struct of_device_id *match; >> + const struct of_device_id *match = NULL; >> irq_handler_t isr; >> int r; >> >> @@ -1018,7 +1018,9 @@ omap_i2c_probe(struct platform_device *pdev) >> goto err_release_region; >> } >> >> +#ifdef CONFIG_OF >> match = of_match_device(omap_i2c_of_match, &pdev->dev); >> +#endif > > How about an empty function for of_match_device instead to avoid the ifdef. That already exists. The problem is the undefined omap_i2c_of_match table reference. g. -- Grant Likely, B.Sc., P.Eng. Secret Lab Technologies Ltd. -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 11:02 ` [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF Paul Walmsley 2012-01-22 15:40 ` Rob Herring @ 2012-01-22 15:45 ` Grant Likely 2012-01-22 16:06 ` Rob Herring 1 sibling, 1 reply; 11+ messages in thread From: Grant Likely @ 2012-01-22 15:45 UTC (permalink / raw) To: Paul Walmsley Cc: linux-omap, linux-arm-kernel, Kevin Hilman, Tony Lindgren, Benoit Cousson, Rob Herring On Sun, Jan 22, 2012 at 04:02:33AM -0700, Paul Walmsley wrote: > Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT > support for i2c controller") breaks compilation when CONFIG_OF is not > defined: > > CC drivers/i2c/busses/i2c-omap.o > drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': > drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) > drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in > > Fix this by avoiding of_*() functions when !CONFIG_OF. To avoid #ifdef blocks, how about one of these fixes instead? of_match_device resolves to a static inline NULL when CONFIG_OF is not selected. g. --- diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index f713eac..c22e51f 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c @@ -979,6 +979,8 @@ static const struct of_device_id omap_i2c_of_match[] = { { }, }; MODULE_DEVICE_TABLE(of, omap_i2c_of_match); +#else +#define omap_i2c_of_match NULL #endif static int __devinit Or alternately: --- diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index f713eac..801df60 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c @@ -1018,7 +1018,7 @@ omap_i2c_probe(struct platform_device *pdev) goto err_release_region; } - match = of_match_device(omap_i2c_of_match, &pdev->dev); + match = of_match_device(of_match_ptr(omap_i2c_of_match), &pdev->dev); if (match) { u32 freq = 100000; /* default to 100000 Hz */ ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 15:45 ` Grant Likely @ 2012-01-22 16:06 ` Rob Herring 2012-01-22 16:59 ` Cousson, Benoit 0 siblings, 1 reply; 11+ messages in thread From: Rob Herring @ 2012-01-22 16:06 UTC (permalink / raw) To: Grant Likely Cc: Paul Walmsley, linux-omap, linux-arm-kernel, Kevin Hilman, Tony Lindgren, Benoit Cousson On 01/22/2012 09:45 AM, Grant Likely wrote: > On Sun, Jan 22, 2012 at 04:02:33AM -0700, Paul Walmsley wrote: >> Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT >> support for i2c controller") breaks compilation when CONFIG_OF is not >> defined: >> >> CC drivers/i2c/busses/i2c-omap.o >> drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': >> drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) >> drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in >> >> Fix this by avoiding of_*() functions when !CONFIG_OF. > > To avoid #ifdef blocks, how about one of these fixes instead? > of_match_device resolves to a static inline NULL when CONFIG_OF is not > selected. > > g. > > --- > diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c > index f713eac..c22e51f 100644 > --- a/drivers/i2c/busses/i2c-omap.c > +++ b/drivers/i2c/busses/i2c-omap.c > @@ -979,6 +979,8 @@ static const struct of_device_id omap_i2c_of_match[] = { > { }, > }; > MODULE_DEVICE_TABLE(of, omap_i2c_of_match); > +#else > +#define omap_i2c_of_match NULL > #endif Or just remove the existing ifdef. Isn't OMAP going to be completely converted to DT? I think building CONFIG_OF and !CONFIG_OF and running non-DT machines with OF enabled is going to be a constant source of breakage. We should move selecting CONFIG_OF up from boards/SOC config to family config (i.e. all OMAP). Rob ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 16:06 ` Rob Herring @ 2012-01-22 16:59 ` Cousson, Benoit 2012-01-22 19:54 ` Paul Walmsley 0 siblings, 1 reply; 11+ messages in thread From: Cousson, Benoit @ 2012-01-22 16:59 UTC (permalink / raw) To: Rob Herring Cc: Grant Likely, Paul Walmsley, linux-omap, linux-arm-kernel, Kevin Hilman, Tony Lindgren On 1/22/2012 5:06 PM, Rob Herring wrote: > On 01/22/2012 09:45 AM, Grant Likely wrote: >> On Sun, Jan 22, 2012 at 04:02:33AM -0700, Paul Walmsley wrote: >>> Commit 6145197be6cc0583fa1a2f4ec1079d366137061e ("i2c: OMAP: Add DT >>> support for i2c controller") breaks compilation when CONFIG_OF is not >>> defined: >>> >>> CC drivers/i2c/busses/i2c-omap.o >>> drivers/i2c/busses/i2c-omap.c: In function 'omap_i2c_probe': >>> drivers/i2c/busses/i2c-omap.c:1021:26: error: 'omap_i2c_of_match' undeclared (first use in this function) >>> drivers/i2c/busses/i2c-omap.c:1021:26: note: each undeclared identifier is reported only once for each function it appears in >>> >>> Fix this by avoiding of_*() functions when !CONFIG_OF. >> >> To avoid #ifdef blocks, how about one of these fixes instead? >> of_match_device resolves to a static inline NULL when CONFIG_OF is not >> selected. >> >> g. >> >> --- >> diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c >> index f713eac..c22e51f 100644 >> --- a/drivers/i2c/busses/i2c-omap.c >> +++ b/drivers/i2c/busses/i2c-omap.c >> @@ -979,6 +979,8 @@ static const struct of_device_id omap_i2c_of_match[] = { >> { }, >> }; >> MODULE_DEVICE_TABLE(of, omap_i2c_of_match); >> +#else >> +#define omap_i2c_of_match NULL >> #endif > > Or just remove the existing ifdef. Isn't OMAP going to be completely > converted to DT? > > I think building CONFIG_OF and !CONFIG_OF and running non-DT machines > with OF enabled is going to be a constant source of breakage. We should > move selecting CONFIG_OF up from boards/SOC config to family config > (i.e. all OMAP). Yep, I do agree, and even sent a patch for that. http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-December/010541.html But it looks like it was stuck in linux-omap dt branch and not pulled for 3.3. Maybe Tony can try to sent it during -rc phase. That being said, this will be valid for OMAP2+ only and will still break OMAP1 platform :-( Tony reported that 2 days ago, and I sent the fix for it. http://www.mail-archive.com/linux-omap@vger.kernel.org/msg61520.html It is now waiting for Ben's Acked-by. Regards, Benoit ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 16:59 ` Cousson, Benoit @ 2012-01-22 19:54 ` Paul Walmsley 2012-01-22 20:07 ` Jean Delvare 0 siblings, 1 reply; 11+ messages in thread From: Paul Walmsley @ 2012-01-22 19:54 UTC (permalink / raw) To: linux-omap, linux-arm-kernel Cc: Cousson, Benoit, Rob Herring, Grant Likely, Kevin Hilman, Tony Lindgren, khali, ben-linux cc Ben, Jean On Sun, 22 Jan 2012, Cousson, Benoit wrote: > http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-December/010541.html > > But it looks like it was stuck in linux-omap dt branch and not pulled for 3.3. > Maybe Tony can try to sent it during -rc phase. > > That being said, this will be valid for OMAP2+ only and will still break OMAP1 > platform :-( > > Tony reported that 2 days ago, and I sent the fix for it. > http://www.mail-archive.com/linux-omap@vger.kernel.org/msg61520.html Will drop patch 3 from my series. Incidentally, it doesn't seem necessary to wait for Ben's ack after commit 046d0a37024a5b1e66ec9314e5e7feba42feb811 ("ARM: OMAP: I2C: fix compilation when !CONFIG_OF"), unless Ben disagrees with that change. - Paul ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF 2012-01-22 19:54 ` Paul Walmsley @ 2012-01-22 20:07 ` Jean Delvare 0 siblings, 0 replies; 11+ messages in thread From: Jean Delvare @ 2012-01-22 20:07 UTC (permalink / raw) To: Paul Walmsley Cc: linux-omap, linux-arm-kernel, Cousson, Benoit, Rob Herring, Grant Likely, Kevin Hilman, Tony Lindgren, ben-linux On Sun, 22 Jan 2012 12:54:21 -0700 (MST), Paul Walmsley wrote: > cc Ben, Jean I'm not involved in this at all. Jean > > On Sun, 22 Jan 2012, Cousson, Benoit wrote: > > > http://lists.ozlabs.org/pipermail/devicetree-discuss/2011-December/010541.html > > > > But it looks like it was stuck in linux-omap dt branch and not pulled for 3.3. > > Maybe Tony can try to sent it during -rc phase. > > > > That being said, this will be valid for OMAP2+ only and will still break OMAP1 > > platform :-( > > > > Tony reported that 2 days ago, and I sent the fix for it. > > http://www.mail-archive.com/linux-omap@vger.kernel.org/msg61520.html > > Will drop patch 3 from my series. Incidentally, it doesn't seem necessary > to wait for Ben's ack after commit > 046d0a37024a5b1e66ec9314e5e7feba42feb811 ("ARM: OMAP: I2C: fix compilation > when !CONFIG_OF"), unless Ben disagrees with that change. > > > - Paul ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2012-01-22 20:07 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-01-22 11:02 [PATCH 0/3] ARM: OMAP: fix compilation problems with v3.3-rc1 Paul Walmsley 2012-01-22 11:02 ` [PATCH 1/3] ARM: OMAP: PRM: fix missing plat/irqs.h build breakage Paul Walmsley 2012-01-22 11:02 ` [PATCH 2/3] ARM: OMAP2+: io: fix compilation breakage on 2420-only configs Paul Walmsley 2012-01-22 11:02 ` [PATCH 3/3] ARM: OMAP: I2C: fix compilation when !CONFIG_OF Paul Walmsley 2012-01-22 15:40 ` Rob Herring 2012-01-22 15:46 ` Grant Likely 2012-01-22 15:45 ` Grant Likely 2012-01-22 16:06 ` Rob Herring 2012-01-22 16:59 ` Cousson, Benoit 2012-01-22 19:54 ` Paul Walmsley 2012-01-22 20:07 ` Jean Delvare
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).