diff options
author | Kevin Hao <haokexin@gmail.com> | 2013-08-06 18:23:31 +0800 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-08-14 14:56:44 +1000 |
commit | 3b04c300070f5ee2608b092e98aa121b963cec26 (patch) | |
tree | adc5fdb83c0d46aac0a617c9831dfd34409b8035 /arch/powerpc/kernel/misc_64.S | |
parent | abb29c3bb13c7b747fae18b9c63b660529ccc612 (diff) | |
download | blackbird-obmc-linux-3b04c300070f5ee2608b092e98aa121b963cec26.tar.gz blackbird-obmc-linux-3b04c300070f5ee2608b092e98aa121b963cec26.zip |
powerpc: Remove the symbol __flush_icache_range
And now the function flush_icache_range() is just a wrapper which
only invoke the function __flush_icache_range() directly. So we
don't have reason to keep it anymore.
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/misc_64.S')
-rw-r--r-- | arch/powerpc/kernel/misc_64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/misc_64.S b/arch/powerpc/kernel/misc_64.S index 74d87f117566..a781566d3993 100644 --- a/arch/powerpc/kernel/misc_64.S +++ b/arch/powerpc/kernel/misc_64.S @@ -67,7 +67,7 @@ PPC64_CACHES: * flush all bytes from start through stop-1 inclusive */ -_KPROBE(__flush_icache_range) +_KPROBE(flush_icache_range) BEGIN_FTR_SECTION blr END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE) |