mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-11-02 17:15: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
31
arch/s390/include/asm/extmem.h
Normal file
31
arch/s390/include/asm/extmem.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* definitions for external memory segment support
|
||||
* Copyright IBM Corp. 2003
|
||||
*/
|
||||
|
||||
#ifndef _ASM_S390X_DCSS_H
|
||||
#define _ASM_S390X_DCSS_H
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
/* possible values for segment type as returned by segment_info */
|
||||
#define SEG_TYPE_SW 0
|
||||
#define SEG_TYPE_EW 1
|
||||
#define SEG_TYPE_SR 2
|
||||
#define SEG_TYPE_ER 3
|
||||
#define SEG_TYPE_SN 4
|
||||
#define SEG_TYPE_EN 5
|
||||
#define SEG_TYPE_SC 6
|
||||
#define SEG_TYPE_EWEN 7
|
||||
|
||||
#define SEGMENT_SHARED 0
|
||||
#define SEGMENT_EXCLUSIVE 1
|
||||
|
||||
int segment_load (char *name, int segtype, unsigned long *addr, unsigned long *length);
|
||||
void segment_unload(char *name);
|
||||
void segment_save(char *name);
|
||||
int segment_type (char* name);
|
||||
int segment_modify_shared (char *name, int do_nonshared);
|
||||
void segment_warning(int rc, char *seg_name);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue