diff options
author | steve.wahl@hpe.com | 2020-07-13 16:29:59 -0500 |
---|---|---|
committer | Thomas Gleixner | 2020-07-17 16:47:45 +0200 |
commit | 711621a098f4d62a9cdbcfc105e804fe8c22f8bb (patch) | |
tree | 844c74f275374606b93b9c16e580daa5301876c5 /arch/x86/platform | |
parent | 3736e82d3a31bdea5a38877d968366dfa60c766e (diff) |
x86/platform/uv: Remove support for UV1 platform from uv_bau
UV1 is not longer supported.
Signed-off-by: Steve Wahl <steve.wahl@hpe.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200713212955.083309377@hpe.com
Diffstat (limited to 'arch/x86/platform')
-rw-r--r-- | arch/x86/platform/uv/tlb_uv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c index 395073df0c1d..62ea907668f8 100644 --- a/arch/x86/platform/uv/tlb_uv.c +++ b/arch/x86/platform/uv/tlb_uv.c @@ -1050,8 +1050,8 @@ const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask, switch (bcp->uvhub_version) { case UV_BAU_V2: case UV_BAU_V3: - bau_desc->payload.uv1_2_3.address = address; - bau_desc->payload.uv1_2_3.sending_cpu = cpu; + bau_desc->payload.uv2_3.address = address; + bau_desc->payload.uv2_3.sending_cpu = cpu; break; case UV_BAU_V4: bau_desc->payload.uv4.address = address; |