mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
ARC: [mm] Aliasing VIPT dcache support 3/4
Fix the one zillion warnings Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
This commit is contained in:
parent
4102b53392
commit
de2a852cc0
@ -33,7 +33,9 @@ void flush_cache_all(void);
|
||||
void flush_icache_range(unsigned long start, unsigned long end);
|
||||
void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len);
|
||||
void __inv_icache_page(unsigned long paddr, unsigned long vaddr);
|
||||
void __flush_dcache_page(unsigned long paddr, unsigned long vaddr);
|
||||
void ___flush_dcache_page(unsigned long paddr, unsigned long vaddr);
|
||||
#define __flush_dcache_page(p, v) \
|
||||
___flush_dcache_page((unsigned long)p, (unsigned long)v)
|
||||
|
||||
#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
|
||||
|
||||
|
@ -624,7 +624,7 @@ void __inv_icache_page(unsigned long paddr, unsigned long vaddr)
|
||||
* wrapper to clearout kernel or userspace mappings of a page
|
||||
* For kernel mappings @vaddr == @paddr
|
||||
*/
|
||||
void __flush_dcache_page(unsigned long paddr, unsigned long vaddr)
|
||||
void ___flush_dcache_page(unsigned long paddr, unsigned long vaddr)
|
||||
{
|
||||
__dc_line_op(paddr, vaddr & PAGE_MASK, PAGE_SIZE, OP_FLUSH_N_INV);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user