diff options
author | Stefan Roese <sr@denx.de> | 2007-10-23 18:03:12 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-10-31 21:21:46 +0100 |
commit | 06713773da4ac3d390c63d82641eb553224b27c2 (patch) | |
tree | a530801edae064fb5de361751a35a7d994f3cf57 /post | |
parent | 6fa397df67c0f269e4528bf181a6e8c88f9723f9 (diff) | |
download | u-boot-06713773da4ac3d390c63d82641eb553224b27c2.tar.gz |
ppc4xx: Remove compiler warning from previous commit
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'post')
-rw-r--r-- | post/cpu/ppc4xx/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post/cpu/ppc4xx/cache.c b/post/cpu/ppc4xx/cache.c index 92b751af10..38e6e98cc7 100644 --- a/post/cpu/ppc4xx/cache.c +++ b/post/cpu/ppc4xx/cache.c @@ -119,7 +119,7 @@ int cache_post_test (int flags) if (ints) enable_interrupts (); - remove_tlb(virt, CACHE_POST_SIZE); + remove_tlb((u32)virt, CACHE_POST_SIZE); return res; } |