Skip to content

Commit

Permalink
powerpc/pmac/smp: Drop unnecessary volatile qualifier
Browse files Browse the repository at this point in the history
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
  • Loading branch information
YueHaibing authored and Michael Ellerman committed Mar 17, 2020
1 parent 9451c79 commit a4037d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/powermac/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a4037d1

Please sign in to comment.