diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-09-19 21:32:42 -0400 |
---|---|---|
committer | Matthew Wilcox <willy@parisc-linux.org> | 2006-10-04 08:50:46 -0400 |
commit | d207ac0f7c9736782bfa51cff2109b74d26c3622 (patch) | |
tree | 2f603d68170180994a95024beb8f7be925a60743 /arch/parisc | |
parent | 32f468139209459c3293a0895cf5b8e66ccc30a5 (diff) |
[PARISC] Fix CONFIG_DEBUG_SPINLOCK
Joel Soete points out that we refer to pa_tlb_lock but only define it if
CONFIG_SMP which breaks a uniprocessor build with CONFIG_DEBUG_SPINLOCK
enabled. No module refers to pa_tlb_lock, so we can delete the export.
Signed-off-by: Matthew Wilcox <willy@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/cache.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index 7e8d697aef36..e91c2be7236a 100644 --- a/arch/parisc/kernel/cache.c +++ b/arch/parisc/kernel/cache.c | |||
@@ -35,15 +35,12 @@ int icache_stride __read_mostly; | |||
35 | EXPORT_SYMBOL(dcache_stride); | 35 | EXPORT_SYMBOL(dcache_stride); |
36 | 36 | ||
37 | 37 | ||
38 | #if defined(CONFIG_SMP) | ||
39 | /* On some machines (e.g. ones with the Merced bus), there can be | 38 | /* On some machines (e.g. ones with the Merced bus), there can be |
40 | * only a single PxTLB broadcast at a time; this must be guaranteed | 39 | * only a single PxTLB broadcast at a time; this must be guaranteed |
41 | * by software. We put a spinlock around all TLB flushes to | 40 | * by software. We put a spinlock around all TLB flushes to |
42 | * ensure this. | 41 | * ensure this. |
43 | */ | 42 | */ |
44 | DEFINE_SPINLOCK(pa_tlb_lock); | 43 | DEFINE_SPINLOCK(pa_tlb_lock); |
45 | EXPORT_SYMBOL(pa_tlb_lock); | ||
46 | #endif | ||
47 | 44 | ||
48 | struct pdc_cache_info cache_info __read_mostly; | 45 | struct pdc_cache_info cache_info __read_mostly; |
49 | #ifndef CONFIG_PA20 | 46 | #ifndef CONFIG_PA20 |