diff options
Diffstat (limited to 'arch/sh/mm/pg-sh7705.c')
-rw-r--r-- | arch/sh/mm/pg-sh7705.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/mm/pg-sh7705.c b/arch/sh/mm/pg-sh7705.c index b052d0fee827..887ab9d18ccd 100644 --- a/arch/sh/mm/pg-sh7705.c +++ b/arch/sh/mm/pg-sh7705.c | |||
@@ -43,13 +43,13 @@ static inline void __flush_purge_virtual_region(void *p1, void *virt, int size) | |||
43 | 43 | ||
44 | p = __pa(p1_begin); | 44 | p = __pa(p1_begin); |
45 | 45 | ||
46 | ways = cpu_data->dcache.ways; | 46 | ways = current_cpu_data.dcache.ways; |
47 | addr = CACHE_OC_ADDRESS_ARRAY; | 47 | addr = CACHE_OC_ADDRESS_ARRAY; |
48 | 48 | ||
49 | do { | 49 | do { |
50 | unsigned long data; | 50 | unsigned long data; |
51 | 51 | ||
52 | addr |= (v & cpu_data->dcache.entry_mask); | 52 | addr |= (v & current_cpu_data.dcache.entry_mask); |
53 | 53 | ||
54 | data = ctrl_inl(addr); | 54 | data = ctrl_inl(addr); |
55 | if ((data & CACHE_PHYSADDR_MASK) == | 55 | if ((data & CACHE_PHYSADDR_MASK) == |
@@ -58,7 +58,7 @@ static inline void __flush_purge_virtual_region(void *p1, void *virt, int size) | |||
58 | ctrl_outl(data, addr); | 58 | ctrl_outl(data, addr); |
59 | } | 59 | } |
60 | 60 | ||
61 | addr += cpu_data->dcache.way_incr; | 61 | addr += current_cpu_data.dcache.way_incr; |
62 | } while (--ways); | 62 | } while (--ways); |
63 | 63 | ||
64 | p1_begin += L1_CACHE_BYTES; | 64 | p1_begin += L1_CACHE_BYTES; |