mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-11-02 00:55:37 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
21
arch/m32r/include/asm/mmu.h
Normal file
21
arch/m32r/include/asm/mmu.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef _ASM_M32R_MMU_H
|
||||
#define _ASM_M32R_MMU_H
|
||||
|
||||
#if !defined(CONFIG_MMU)
|
||||
|
||||
typedef struct {
|
||||
unsigned long end_brk;
|
||||
} mm_context_t;
|
||||
|
||||
#else /* CONFIG_MMU */
|
||||
|
||||
/* Default "unsigned long" context */
|
||||
#ifndef CONFIG_SMP
|
||||
typedef unsigned long mm_context_t;
|
||||
#else
|
||||
typedef unsigned long mm_context_t[NR_CPUS];
|
||||
#endif
|
||||
|
||||
#endif /* CONFIG_MMU */
|
||||
|
||||
#endif /* _ASM_M32R_MMU_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue