mirror of https://gitee.com/openkylin/linux.git
ARC: fix mmuv2 warning
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
This commit is contained in:
parent
9a091d9e84
commit
d75386363e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue