Skip to content

Commit

Permalink
[PATCH] m68k: EXPORT_SYMBOL(cache_{clear,push}) bogus comment
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Dec 9, 2006
1 parent 3f92222 commit bf8af91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/m68k/mm/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);


/*
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit bf8af91

Please sign in to comment.