summaryrefslogtreecommitdiff
path: root/arch/powerpc/platforms/powermac/smp.c
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2020-03-03 11:56:04 +0300
committerMichael Ellerman <mpe@ellerman.id.au>2020-03-17 15:40:36 +0300
commita4037d1f1fc4e92b69d7196d4568c33078d465ea (patch)
tree469823056f7afda85d48ef94788e0ce9649cb933 /arch/powerpc/platforms/powermac/smp.c
parent9451c79bc39e610882bdd12370f01af5004a3c4f (diff)
downloadlinux-a4037d1f1fc4e92b69d7196d4568c33078d465ea.tar.xz
powerpc/pmac/smp: Drop unnecessary volatile qualifier
core99_l2_cache/core99_l3_cache do not need to be marked as volatile, remove it. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20200303085604.24952-1-yuehaibing@huawei.com
Diffstat (limited to 'arch/powerpc/platforms/powermac/smp.c')
-rw-r--r--arch/powerpc/platforms/powermac/smp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/powermac/smp.c b/arch/powerpc/platforms/powermac/smp.c
index 4a2a1b2529b3..d2900689d642 100644
--- a/arch/powerpc/platforms/powermac/smp.c
+++ b/arch/powerpc/platforms/powermac/smp.c
@@ -664,8 +664,8 @@ static void core99_init_caches(int cpu)
{
#ifndef CONFIG_PPC64
/* L2 and L3 cache settings to pass from CPU0 to CPU1 on G4 cpus */
- volatile static long int core99_l2_cache;
- volatile static long int core99_l3_cache;
+ static long int core99_l2_cache;
+ static long int core99_l3_cache;
if (!cpu_has_feature(CPU_FTR_L2CR))
return;