aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-06-18 14:51:57 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-08 12:23:27 +0200
commitd400524affeb84bdfc2b00cd561fbfb8c09dadd7 (patch)
treec226923f39a929fd75eae3808db41cd2b4a468bd
parentb4c286e6af24a116228c8c9f58b9a9eb5b7c000a (diff)
SGI UV: TLB shootdown using broadcast assist unit, fix
fix: arch/x86/kernel/tlb_uv.c: In function ‘uv_table_bases_init': arch/x86/kernel/tlb_uv.c:612: error: ‘bau_tabsp' undeclared (first use in this function) arch/x86/kernel/tlb_uv.c:612: error: (Each undeclared identifier is reported only once arch/x86/kernel/tlb_uv.c:612: error: for each function it appears in.) Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/tlb_uv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/tlb_uv.c b/arch/x86/kernel/tlb_uv.c
index 7bdbf67a2d7..b362913f019 100644
--- a/arch/x86/kernel/tlb_uv.c
+++ b/arch/x86/kernel/tlb_uv.c
@@ -609,7 +609,7 @@ static struct bau_control * __init uv_table_bases_init(int blade, int node)
uv_bau_table_bases[blade] = bau_tabp;
- return bau_tabsp;
+ return bau_tabp;
}
/*