Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread David Brownell
On Wednesday 29 April 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: > as the clock function could be move to cpu.c it will have the stringly-link > function I'll stuff that in a new cpu.c file, but those clock status display routines aren't mandatory.

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:11 Wed 29 Apr , Ben Warren wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: >> On 13:29 Wed 29 Apr , Ben Warren wrote: >> >>> Hi J-C, >>> >>> Jean-Christophe PLAGNIOL-VILLARD wrote: >>> >>> > +/* > + * * Initializes on-chip ethernet controllers. > + * * to over

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 13:29 Wed 29 Apr , Ben Warren wrote: > >> Hi J-C, >> >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >> +/* + * * Initializes on-chip ethernet controllers. + * * to override, implement board_eth_init() + **/ +in

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:29 Wed 29 Apr , Ben Warren wrote: > Hi J-C, > > Jean-Christophe PLAGNIOL-VILLARD wrote: > >>> +/* >>> + * * Initializes on-chip ethernet controllers. >>> + * * to override, implement board_eth_init() >>> + **/ >>> +int cpu_eth_init(bd_t *bis) >>> +{ >>> +#if defined(CONFIG_DRIVER_

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Ben Warren
Hi J-C, Jean-Christophe PLAGNIOL-VILLARD wrote: >> +/* >> + * * Initializes on-chip ethernet controllers. >> + * * to override, implement board_eth_init() >> + **/ >> +int cpu_eth_init(bd_t *bis) >> +{ >> +#if defined(CONFIG_DRIVER_TI_EMAC) >> +dm644x_emac_initialize(); >> +#endif >> +

Re: [U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-29 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:12 Tue 28 Apr , Ben Warren wrote: > Added CONFIG_NET_MULTI to all Davinci boards > Removed all calls to Davinci network driver from board code > Added cpu_eth_init() to cpu/arm926ejs/cpu.c > > Signed-off-by: Ben Warren > --- > board/davinci/common/misc.h |1 - > board/da

[U-Boot] [PATCH 3/3][Net][ARM] Switched dm644x_emac Ethernet driver to use newer API

2009-04-28 Thread Ben Warren
Added CONFIG_NET_MULTI to all Davinci boards Removed all calls to Davinci network driver from board code Added cpu_eth_init() to cpu/arm926ejs/cpu.c Signed-off-by: Ben Warren --- board/davinci/common/misc.h |1 - board/davinci/dvevm/dvevm.c |3 - board/davinci/schmoogi