* tidspbridge build fails
@ 2012-09-22 1:46 Joni Lapilainen
2012-09-23 21:16 ` Tony Lindgren
2012-09-24 16:37 ` Selso LIBERADO
0 siblings, 2 replies; 9+ messages in thread
From: Joni Lapilainen @ 2012-09-22 1:46 UTC (permalink / raw)
To: linux-omap
Building tidspbridge fails:
CC [M] drivers/staging/tidspbridge/core/tiomap3430.o
drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_start':
drivers/staging/tidspbridge/core/tiomap3430.c:421:25: error:
'OMAP343X_CTRL_BASE' undeclared (first use in this function)
drivers/staging/tidspbridge/core/tiomap3430.c:421:25: note: each
undeclared identifier is reported only once for each function it
appears in
make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: tidspbridge build fails
2012-09-22 1:46 tidspbridge build fails Joni Lapilainen
@ 2012-09-23 21:16 ` Tony Lindgren
2012-09-24 16:37 ` Selso LIBERADO
1 sibling, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2012-09-23 21:16 UTC (permalink / raw)
To: Joni Lapilainen; +Cc: linux-omap
* Joni Lapilainen <joni.lapilainen@gmail.com> [120921 18:47]:
> Building tidspbridge fails:
>
> CC [M] drivers/staging/tidspbridge/core/tiomap3430.o
> drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_start':
> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: error:
> 'OMAP343X_CTRL_BASE' undeclared (first use in this function)
> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: note: each
> undeclared identifier is reported only once for each function it
> appears in
> make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1
Hmm I think a fix for that is already queued by Greg and it
seems we don't have it in linux-omap master any longer as
I dropped it after Greg picked it up.
Does commit c37a1747 (staging: tidspbridge: Prepare for irqs.h removal)
in linux next solve the problem for you?
Regards,
Tony
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: tidspbridge build fails
2012-09-22 1:46 tidspbridge build fails Joni Lapilainen
2012-09-23 21:16 ` Tony Lindgren
@ 2012-09-24 16:37 ` Selso LIBERADO
2012-09-24 17:00 ` Tony Lindgren
2012-09-24 22:13 ` Omar Ramirez Luna
1 sibling, 2 replies; 9+ messages in thread
From: Selso LIBERADO @ 2012-09-24 16:37 UTC (permalink / raw)
To: linux-omap
Joni Lapilainen <joni.lapilainen <at> gmail.com> writes:
>
> Building tidspbridge fails:
>
> CC [M] drivers/staging/tidspbridge/core/tiomap3430.o
> drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_start':
> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: error:
> 'OMAP343X_CTRL_BASE' undeclared (first use in this function)
> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: note: each
> undeclared identifier is reported only once for each function it
> appears in
> make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo <at> vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
This definition has moved to : arch/arm/mach-omap2/omap34xx.h
I don't know if we can include directly this file in tiomap3430.c (I'm newbie)
However there is still the symbole OMAP34XX_WDT3_BASE in
'drivers/staging/tidspbridge/core/wdt.c' that is not resolved.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: tidspbridge build fails
2012-09-24 16:37 ` Selso LIBERADO
@ 2012-09-24 17:00 ` Tony Lindgren
2012-09-24 18:56 ` Selso LIBERADO
2012-09-24 22:13 ` Omar Ramirez Luna
1 sibling, 1 reply; 9+ messages in thread
From: Tony Lindgren @ 2012-09-24 17:00 UTC (permalink / raw)
To: Selso LIBERADO; +Cc: linux-omap
* Selso LIBERADO <sli@cioinfoindus.fr> [120924 09:46]:
> Joni Lapilainen <joni.lapilainen <at> gmail.com> writes:
>
> >
> > Building tidspbridge fails:
> >
> > CC [M] drivers/staging/tidspbridge/core/tiomap3430.o
> > drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_start':
> > drivers/staging/tidspbridge/core/tiomap3430.c:421:25: error:
> > 'OMAP343X_CTRL_BASE' undeclared (first use in this function)
> > drivers/staging/tidspbridge/core/tiomap3430.c:421:25: note: each
> > undeclared identifier is reported only once for each function it
> > appears in
> > make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo <at> vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> >
> >
>
> This definition has moved to : arch/arm/mach-omap2/omap34xx.h
> I don't know if we can include directly this file in tiomap3430.c (I'm newbie)
No we should not, that should be private to arch/arm/mach-omap2.
> However there is still the symbole OMAP34XX_WDT3_BASE in
> 'drivers/staging/tidspbridge/core/wdt.c' that is not resolved.
OK it's probably best to define that locally there or in some
drivers/staging/tidispbridge header whatever the code is doing
with it.. Care to do a patch for it?
Regards,
Tony
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: tidspbridge build fails
2012-09-24 16:37 ` Selso LIBERADO
2012-09-24 17:00 ` Tony Lindgren
@ 2012-09-24 22:13 ` Omar Ramirez Luna
2012-09-25 17:39 ` Selso LIBERADO
1 sibling, 1 reply; 9+ messages in thread
From: Omar Ramirez Luna @ 2012-09-24 22:13 UTC (permalink / raw)
To: Selso LIBERADO; +Cc: linux-omap, tony
Hi,
On Mon, Sep 24, 2012 at 11:37 AM, Selso LIBERADO <sli@cioinfoindus.fr> wrote:
...
>> CC [M] drivers/staging/tidspbridge/core/tiomap3430.o
>> drivers/staging/tidspbridge/core/tiomap3430.c: In function 'bridge_brd_start':
>> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: error:
>> 'OMAP343X_CTRL_BASE' undeclared (first use in this function)
>> drivers/staging/tidspbridge/core/tiomap3430.c:421:25: note: each
>> undeclared identifier is reported only once for each function it
>> appears in
>> make[3]: *** [drivers/staging/tidspbridge/core/tiomap3430.o] Error 1
...
> This definition has moved to : arch/arm/mach-omap2/omap34xx.h
> I don't know if we can include directly this file in tiomap3430.c (I'm newbie)
>
> However there is still the symbole OMAP34XX_WDT3_BASE in
> 'drivers/staging/tidspbridge/core/wdt.c' that is not resolved.
This should be solved by Tony's patch:
https://patchwork.kernel.org/patch/1435311/
Right now it is on staging-next.
Regards,
Omar
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-09-26 0:35 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-22 1:46 tidspbridge build fails Joni Lapilainen
2012-09-23 21:16 ` Tony Lindgren
2012-09-24 16:37 ` Selso LIBERADO
2012-09-24 17:00 ` Tony Lindgren
2012-09-24 18:56 ` Selso LIBERADO
2012-09-24 21:04 ` Tony Lindgren
2012-09-24 22:13 ` Omar Ramirez Luna
2012-09-25 17:39 ` Selso LIBERADO
2012-09-26 0:35 ` Omar Ramirez Luna
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).