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
30
include/linux/exynos-itm.h
Normal file
30
include/linux/exynos-itm.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
|
||||
* http://www.samsung.com
|
||||
*
|
||||
* IPs Traffic Monitor(ITM) Driver for Samsung Exynos SOC
|
||||
* By Hosung Kim (hosung0.kim@samsung.com)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*/
|
||||
|
||||
#ifndef EXYNOS_ITM__H
|
||||
#define EXYNOS_ITM__H
|
||||
|
||||
#ifdef CONFIG_EXYNOS_ITM
|
||||
struct itm_notifier {
|
||||
char *init_desc;
|
||||
char *target_desc;
|
||||
char *masterip_desc;
|
||||
unsigned int masterip_idx;
|
||||
unsigned long target_addr;
|
||||
};
|
||||
extern void itm_notifier_chain_register(struct notifier_block *n);
|
||||
#else
|
||||
#define itm_notifier_chain_register(x) do { } while(0)
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue