aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/parisc/mm/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/mm/init.c b/arch/parisc/mm/init.c
index 6c5ea964647..b0831d9e35c 100644
--- a/arch/parisc/mm/init.c
+++ b/arch/parisc/mm/init.c
@@ -378,7 +378,7 @@ void free_initmem(void)
378 /* Attempt to catch anyone trying to execute code here 378 /* Attempt to catch anyone trying to execute code here
379 * by filling the page with BRK insns. 379 * by filling the page with BRK insns.
380 */ 380 */
381 memset(init_begin, 0x00, init_end - init_begin); 381 memset((void *)init_begin, 0x00, init_end - init_begin);
382 flush_icache_range(init_begin, init_end); 382 flush_icache_range(init_begin, init_end);
383#endif 383#endif
384 384