From: robertkaiser Date: Thu, 13 Mar 2003 16:42:53 +0000 (+0000) Subject: Some fixes to avoid warnings for the samsung X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ab636f40564d60131ea1703f96d9e118e82d90b4;p=users%2Frw%2Farmboot.git Some fixes to avoid warnings for the samsung --- diff --git a/cpu/arm920t/cpu.c b/cpu/arm920t/cpu.c index a72f543..604ebf7 100644 --- a/cpu/arm920t/cpu.c +++ b/cpu/arm920t/cpu.c @@ -188,9 +188,9 @@ int dcache_status(void) */ void icache_enable(void) {} void icache_disable(void) {} -int icache_status(void) {} +int icache_status(void) { return 0; } void dcache_enable(void) {} void dcache_disable(void) {} -int dcache_status(void) {} +int dcache_status(void) { return 0; } #endif /* USE_920T_MMU */