mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
24
arch/sparc/include/asm/tlbflush_32.h
Normal file
24
arch/sparc/include/asm/tlbflush_32.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef _SPARC_TLBFLUSH_H
|
||||
#define _SPARC_TLBFLUSH_H
|
||||
|
||||
#include <asm/cachetlb_32.h>
|
||||
|
||||
#define flush_tlb_all() \
|
||||
sparc32_cachetlb_ops->tlb_all()
|
||||
#define flush_tlb_mm(mm) \
|
||||
sparc32_cachetlb_ops->tlb_mm(mm)
|
||||
#define flush_tlb_range(vma, start, end) \
|
||||
sparc32_cachetlb_ops->tlb_range(vma, start, end)
|
||||
#define flush_tlb_page(vma, addr) \
|
||||
sparc32_cachetlb_ops->tlb_page(vma, addr)
|
||||
|
||||
/*
|
||||
* This is a kludge, until I know better. --zaitcev XXX
|
||||
*/
|
||||
static inline void flush_tlb_kernel_range(unsigned long start,
|
||||
unsigned long end)
|
||||
{
|
||||
flush_tlb_all();
|
||||
}
|
||||
|
||||
#endif /* _SPARC_TLBFLUSH_H */
|
Loading…
Add table
Add a link
Reference in a new issue