mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28: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
1
arch/arm/mach-efm32/Makefile
Normal file
1
arch/arm/mach-efm32/Makefile
Normal file
|
@ -0,0 +1 @@
|
|||
obj-y += dtmachine.o
|
3
arch/arm/mach-efm32/Makefile.boot
Normal file
3
arch/arm/mach-efm32/Makefile.boot
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Empty file waiting for deletion once Makefile.boot isn't needed any more.
|
||||
# Patch waits for application at
|
||||
# http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 .
|
15
arch/arm/mach-efm32/dtmachine.c
Normal file
15
arch/arm/mach-efm32/dtmachine.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include <linux/kernel.h>
|
||||
|
||||
#include <asm/v7m.h>
|
||||
|
||||
#include <asm/mach/arch.h>
|
||||
|
||||
static const char *const efm32gg_compat[] __initconst = {
|
||||
"efm32,dk3750",
|
||||
NULL
|
||||
};
|
||||
|
||||
DT_MACHINE_START(EFM32DT, "EFM32 (Device Tree Support)")
|
||||
.dt_compat = efm32gg_compat,
|
||||
.restart = armv7m_restart,
|
||||
MACHINE_END
|
Loading…
Add table
Add a link
Reference in a new issue