diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2014-04-06 05:29:51 +0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2014-05-05 12:52:12 +0400 |
commit | d75386363ee60eb51c933c7b5e536f3a502ad7d7 (patch) | |
tree | 1b42879bf082e715204528e4dbb50f13f140a646 /arch/arc | |
parent | 9a091d9e8450a4cec76bd208bbbb017a12795416 (diff) | |
download | linux-d75386363ee60eb51c933c7b5e536f3a502ad7d7.tar.xz |
ARC: fix mmuv2 warning
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/mm/cache_arc700.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arc/mm/cache_arc700.c b/arch/arc/mm/cache_arc700.c index 89edf7961a2f..23c3832e6d9f 100644 --- a/arch/arc/mm/cache_arc700.c +++ b/arch/arc/mm/cache_arc700.c @@ -253,12 +253,16 @@ static inline void __cache_line_loop(unsigned long paddr, unsigned long vaddr, if (cacheop == OP_INV_IC) { aux_cmd = ARC_REG_IC_IVIL; +#if (CONFIG_ARC_MMU_VER > 2) aux_tag = ARC_REG_IC_PTAG; +#endif } else { /* d$ cmd: INV (discard or wback-n-discard) OR FLUSH (wback) */ aux_cmd = cacheop & OP_INV ? ARC_REG_DC_IVDL : ARC_REG_DC_FLDL; +#if (CONFIG_ARC_MMU_VER > 2) aux_tag = ARC_REG_DC_PTAG; +#endif } /* Ensure we properly floor/ceil the non-line aligned/sized requests |