Browse Source

arch/score/mm/cache.c: Export 'flush_icache_range'

The related error (with allmodconfig under score):

    MODPOST 1365 modules
  ERROR: "flush_icache_range" [drivers/misc/lkdtm.ko] undefined!

Acked-by: Lennox Wu <lennox.wu@gmail.com>
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Chen Gang 11 years ago
parent
commit
000ab4b0a7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      arch/score/mm/cache.c

+ 1 - 0
arch/score/mm/cache.c

@@ -278,3 +278,4 @@ void flush_icache_range(unsigned long start, unsigned long end)
 		start += L1_CACHE_BYTES;
 		start += L1_CACHE_BYTES;
 	}
 	}
 }
 }
+EXPORT_SYMBOL(flush_icache_range);