diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2010-10-27 20:28:44 +0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2010-10-27 20:28:44 +0400 |
commit | 9b287bf9924cedaf1accd7293db3627bef7c46e3 (patch) | |
tree | 116b52c64156aea7aa2236fd3e030e4885f7c2d8 /arch/mn10300/mm | |
parent | 518d4bb7464dd3c04aeb23874dc360b54058c01e (diff) | |
download | linux-9b287bf9924cedaf1accd7293db3627bef7c46e3.tar.xz |
MN10300: Cacheflush functions should take unsigned long addresses
The functions that perform cache flushing should take addresses of unsigned
long type, not unsigned int.
Signed-off-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
Signed-off-by: Kiyoshi Owada <owada.kiyoshi@jp.panasonic.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/mn10300/mm')
-rw-r--r-- | arch/mn10300/mm/cache-flush-by-tag.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mn10300/mm/cache-flush-by-tag.S b/arch/mn10300/mm/cache-flush-by-tag.S index c8ed1cbac107..8fe90e49b96c 100644 --- a/arch/mn10300/mm/cache-flush-by-tag.S +++ b/arch/mn10300/mm/cache-flush-by-tag.S @@ -62,9 +62,9 @@ mn10300_dcache_flush_end: ############################################################################### # -# void mn10300_dcache_flush_page(unsigned start) -# void mn10300_dcache_flush_range(unsigned start, unsigned end) -# void mn10300_dcache_flush_range2(unsigned start, unsigned size) +# void mn10300_dcache_flush_page(unsigned long start) +# void mn10300_dcache_flush_range(unsigned long start, unsigned long end) +# void mn10300_dcache_flush_range2(unsigned long start, unsigned long size) # Flush a range of addresses on a page in the dcache # ############################################################################### @@ -142,9 +142,9 @@ mn10300_dcache_flush_inv_end: ############################################################################### # -# void mn10300_dcache_flush_inv_page(unsigned start) -# void mn10300_dcache_flush_inv_range(unsigned start, unsigned end) -# void mn10300_dcache_flush_inv_range2(unsigned start, unsigned size) +# void mn10300_dcache_flush_inv_page(unsigned long start) +# void mn10300_dcache_flush_inv_range(unsigned long start, unsigned long end) +# void mn10300_dcache_flush_inv_range2(unsigned long start, unsigned long size) # Flush and invalidate a range of addresses on a page in the dcache # ############################################################################### |