Re: [U-Boot-Users] [PATCH 7/8] ppc4xx: Remove superfluous dram_init() call or replace it by initdram()

2008-06-04 Thread Detlev Zundel
Hi Stefan, Historically the 405 U-Boot port had a dram_init() call in early init stage. This function was still called from start.S and most of the time coded in assembler. This is not needed anymore (since a long time) and boards should implement the common initdram() function in C instead.

Re: [U-Boot-Users] [PATCH 7/8] ppc4xx: Remove superfluous dram_init() call or replace it by initdram()

2008-06-04 Thread Stefan Roese
Hi Detlev, On Wednesday 04 June 2008, Detlev Zundel wrote: I put those maintainers that I could find on CC to inform them. You could have done the same ;) I intended to do so. But unfortunately forgot about it. Sorry about that. Best regards, Stefan

[U-Boot-Users] [PATCH 7/8] ppc4xx: Remove superfluous dram_init() call or replace it by initdram()

2008-06-02 Thread Stefan Roese
Historically the 405 U-Boot port had a dram_init() call in early init stage. This function was still called from start.S and most of the time coded in assembler. This is not needed anymore (since a long time) and boards should implement the common initdram() function in C instead. This patch now