1/*
2 *  linux/arch/arm/mm/proc-syms.c
3 *
4 *  Copyright (C) 2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/module.h>
11#include <asm/proc-fns.h>
12
13#ifndef MULTI_CPU
14EXPORT_SYMBOL(cpu_cache_clean_invalidate_all);
15EXPORT_SYMBOL(cpu_cache_clean_invalidate_range);
16EXPORT_SYMBOL(cpu_flush_ram_page);
17EXPORT_SYMBOL(cpu_dcache_clean_page);
18EXPORT_SYMBOL(cpu_dcache_clean_entry);
19EXPORT_SYMBOL(cpu_dcache_clean_range);
20EXPORT_SYMBOL(cpu_dcache_invalidate_range);
21EXPORT_SYMBOL(cpu_icache_invalidate_range);
22EXPORT_SYMBOL(cpu_icache_invalidate_page);
23EXPORT_SYMBOL(cpu_tlb_invalidate_all);
24EXPORT_SYMBOL(cpu_tlb_invalidate_range);
25EXPORT_SYMBOL(cpu_tlb_invalidate_page);
26EXPORT_SYMBOL(cpu_set_pgd);
27EXPORT_SYMBOL(cpu_set_pmd);
28EXPORT_SYMBOL(cpu_set_pte);
29#else
30EXPORT_SYMBOL(processor);
31#endif
32