public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform
@ 2010-04-28  9:00 Sudhakar Rajashekhara
  2010-05-05 21:43 ` Tom Rix
  0 siblings, 1 reply; 3+ messages in thread
From: Sudhakar Rajashekhara @ 2010-04-28  9:00 UTC (permalink / raw)
  To: u-boot

This patch series adds support for TI's DA850/OMAP-L138
platform. This series is dependant on the following
patch which I have submitted earlier:

[U-Boot] [PATCH] da830: Move common code out of da830evm.c file

Sudhakar Rajashekhara (3):
  TI: DaVinci: Prepare for da850 support
  TI: DaVinci: Add board specific code for da850 EVM
  TI: DaVinci: Create configuration file for da850 EVM

 MAINTAINERS                                     |    4 +
 MAKEALL                                         |    1 +
 Makefile                                        |    5 +-
 arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
 board/davinci/{da830evm => da8xxevm}/Makefile   |    5 +-
 board/davinci/{da830evm => da8xxevm}/config.mk  |    0 
 board/davinci/{da830evm => da8xxevm}/da830evm.c |    0 
 board/davinci/da8xxevm/da850evm.c               |  111 +++++++++++++++++++
 include/configs/da850evm.h                      |  135 +++++++++++++++++++++++
 9 files changed, 260 insertions(+), 2 deletions(-)
 rename board/davinci/{da830evm => da8xxevm}/Makefile (91%)
 rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
 rename board/davinci/{da830evm => da8xxevm}/da830evm.c (100%)
 create mode 100644 board/davinci/da8xxevm/da850evm.c
 create mode 100644 include/configs/da850evm.h

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

* [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform
  2010-04-28  9:00 [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform Sudhakar Rajashekhara
@ 2010-05-05 21:43 ` Tom Rix
  2010-05-06  4:18   ` Sudhakar Rajashekhara
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Rix @ 2010-05-05 21:43 UTC (permalink / raw)
  To: u-boot

Sudhakar Rajashekhara wrote:
> This patch series adds support for TI's DA850/OMAP-L138
> platform. This series is dependant on the following
> patch which I have submitted earlier:
> 
> [U-Boot] [PATCH] da830: Move common code out of da830evm.c file
> 
> Sudhakar Rajashekhara (3):
>   TI: DaVinci: Prepare for da850 support
>   TI: DaVinci: Add board specific code for da850 EVM
>   TI: DaVinci: Create configuration file for da850 EVM

I ran into

da850evm.c:64: error: array type has incomplete element type
da850evm.c: In function 'board_init':
da850evm.c:75: warning: implicit declaration of function 'irq_init'
da850evm.c:90: warning: implicit declaration of function 
'davinci_configure_lpsc_items'

Please check that this patchset still builds and rebase if necessary.

Tom

> 
>  MAINTAINERS                                     |    4 +
>  MAKEALL                                         |    1 +
>  Makefile                                        |    5 +-
>  arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
>  board/davinci/{da830evm => da8xxevm}/Makefile   |    5 +-
>  board/davinci/{da830evm => da8xxevm}/config.mk  |    0 
>  board/davinci/{da830evm => da8xxevm}/da830evm.c |    0 
>  board/davinci/da8xxevm/da850evm.c               |  111 +++++++++++++++++++
>  include/configs/da850evm.h                      |  135 +++++++++++++++++++++++
>  9 files changed, 260 insertions(+), 2 deletions(-)
>  rename board/davinci/{da830evm => da8xxevm}/Makefile (91%)
>  rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
>  rename board/davinci/{da830evm => da8xxevm}/da830evm.c (100%)
>  create mode 100644 board/davinci/da8xxevm/da850evm.c
>  create mode 100644 include/configs/da850evm.h
> 
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 
> 

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

* [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform
  2010-05-05 21:43 ` Tom Rix
@ 2010-05-06  4:18   ` Sudhakar Rajashekhara
  0 siblings, 0 replies; 3+ messages in thread
From: Sudhakar Rajashekhara @ 2010-05-06  4:18 UTC (permalink / raw)
  To: u-boot

Hi Tom,

> -----Original Message-----
> From: Tom Rix [mailto:tom at bumblecow.com]
> Sent: Thursday, May 06, 2010 3:14 AM
> To: Sudhakar Rajashekhara
> Cc: u-boot at lists.denx.de
> Subject: Re: [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform
> 
> Sudhakar Rajashekhara wrote:
> > This patch series adds support for TI's DA850/OMAP-L138
> > platform. This series is dependant on the following
> > patch which I have submitted earlier:
> >
> > [U-Boot] [PATCH] da830: Move common code out of da830evm.c file
> >
> > Sudhakar Rajashekhara (3):
> >   TI: DaVinci: Prepare for da850 support
> >   TI: DaVinci: Add board specific code for da850 EVM
> >   TI: DaVinci: Create configuration file for da850 EVM
> 
> I ran into
> 
> da850evm.c:64: error: array type has incomplete element type
> da850evm.c: In function 'board_init':
> da850evm.c:75: warning: implicit declaration of function 'irq_init'
> da850evm.c:90: warning: implicit declaration of function
> 'davinci_configure_lpsc_items'
> 
> Please check that this patchset still builds and rebase if necessary.
> 

This patch set depends on one patch which I had submitted earlier (http://lists.denx.de/pipermail/u-boot/2010-April/070383.html).
This patch was Acked by Nick Thompson but not yet pulled in. I have mentioned about this dependency in patch 0/0. Can you try after
applying this patch?

Thanks,
Sudhakar

> Tom
> 
> >
> >  MAINTAINERS                                     |    4 +
> >  MAKEALL                                         |    1 +
> >  Makefile                                        |    5 +-
> >  arch/arm/include/asm/arch-davinci/hardware.h    |    1 +
> >  board/davinci/{da830evm => da8xxevm}/Makefile   |    5 +-
> >  board/davinci/{da830evm => da8xxevm}/config.mk  |    0
> >  board/davinci/{da830evm => da8xxevm}/da830evm.c |    0
> >  board/davinci/da8xxevm/da850evm.c               |  111 +++++++++++++++++++
> >  include/configs/da850evm.h                      |  135 +++++++++++++++++++++++
> >  9 files changed, 260 insertions(+), 2 deletions(-)
> >  rename board/davinci/{da830evm => da8xxevm}/Makefile (91%)
> >  rename board/davinci/{da830evm => da8xxevm}/config.mk (100%)
> >  rename board/davinci/{da830evm => da8xxevm}/da830evm.c (100%)
> >  create mode 100644 board/davinci/da8xxevm/da850evm.c
> >  create mode 100644 include/configs/da850evm.h
> >
> > _______________________________________________
> > U-Boot mailing list
> > U-Boot at lists.denx.de
> > http://lists.denx.de/mailman/listinfo/u-boot
> >
> >

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

end of thread, other threads:[~2010-05-06  4:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-28  9:00 [U-Boot] [PATCH 0/3] Support for TI's DA850/OMAP-L138 platform Sudhakar Rajashekhara
2010-05-05 21:43 ` Tom Rix
2010-05-06  4:18   ` Sudhakar Rajashekhara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox