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
18
include/xen/hvc-console.h
Normal file
18
include/xen/hvc-console.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef XEN_HVC_CONSOLE_H
|
||||
#define XEN_HVC_CONSOLE_H
|
||||
|
||||
extern struct console xenboot_console;
|
||||
|
||||
#ifdef CONFIG_HVC_XEN
|
||||
void xen_console_resume(void);
|
||||
void xen_raw_console_write(const char *str);
|
||||
__printf(1, 2)
|
||||
void xen_raw_printk(const char *fmt, ...);
|
||||
#else
|
||||
static inline void xen_console_resume(void) { }
|
||||
static inline void xen_raw_console_write(const char *str) { }
|
||||
static inline __printf(1, 2)
|
||||
void xen_raw_printk(const char *fmt, ...) { }
|
||||
#endif
|
||||
|
||||
#endif /* XEN_HVC_CONSOLE_H */
|
Loading…
Add table
Add a link
Reference in a new issue