
In message 20080418095616.18864.23500.stgit@pollux.denx.de you wrote:
Recent commit a4986459 adds reference to dcache_enable, thus breaking the build on PPC440. This patch adds a stub for dcache_enable, similarly to what's being done for other cache operations.
Signed-off-by: Bartlomiej Sieka tur@semihalf.com
cpu/ppc4xx/cache.S | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/cpu/ppc4xx/cache.S b/cpu/ppc4xx/cache.S index 5124dec..ceb3ec0 100644 --- a/cpu/ppc4xx/cache.S +++ b/cpu/ppc4xx/cache.S @@ -166,9 +166,11 @@ _GLOBAL(invalidate_dcache) #ifdef CONFIG_440
.globl dcache_disable
.globl dcache_enable .globl icache_disable .globl icache_enable
dcache_disable: +dcache_enable: icache_disable: icache_enable: blr
Thanks, but as mentiuoned before (in my message to Stafan as the 4xx custodian), the whole idea of having such "stubs" (I'd rather call it "bad and evil fakes") seems not acceptable to me.
I want to see this cleaned up.
Best regards,
Wolfgang Denk