diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2006-12-09 10:50:15 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-09 09:41:18 -0800 |
commit | bf8af91bcd8aadad4933a51c1219ea35e1ae0d77 (patch) | |
tree | 19f0ff81e82eded1dfddfe2947cff80f94996b7b /arch | |
parent | 3f922221bbeb1a61146126cdec3c7ccf81539463 (diff) | |
download | op-kernel-dev-bf8af91bcd8aadad4933a51c1219ea35e1ae0d77.zip op-kernel-dev-bf8af91bcd8aadad4933a51c1219ea35e1ae0d77.tar.gz |
[PATCH] m68k: EXPORT_SYMBOL(cache_{clear,push}) bogus comment
Remove bogus comments about unexporting cache_{push,clear}(), as inline
dma_cache_maintenance() (used by at least bionet and pamsnet) calls them.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68k/mm/memory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/mm/memory.c b/arch/m68k/mm/memory.c index 0f88812..13c0b4a 100644 --- a/arch/m68k/mm/memory.c +++ b/arch/m68k/mm/memory.c @@ -299,7 +299,7 @@ void cache_clear (unsigned long paddr, int len) mach_l2_flush(0); #endif } -EXPORT_SYMBOL(cache_clear); /* probably can be unexported */ +EXPORT_SYMBOL(cache_clear); /* @@ -352,7 +352,7 @@ void cache_push (unsigned long paddr, int len) mach_l2_flush(1); #endif } -EXPORT_SYMBOL(cache_push); /* probably can be unexported */ +EXPORT_SYMBOL(cache_push); #ifndef CONFIG_SINGLE_MEMORY_CHUNK int mm_end_of_chunk (unsigned long addr, int len) |