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
70
drivers/rtc/rtc-core.h
Normal file
70
drivers/rtc/rtc-core.h
Normal file
|
@ -0,0 +1,70 @@
|
|||
#ifdef CONFIG_RTC_INTF_DEV
|
||||
|
||||
extern void __init rtc_dev_init(void);
|
||||
extern void __exit rtc_dev_exit(void);
|
||||
extern void rtc_dev_prepare(struct rtc_device *rtc);
|
||||
extern void rtc_dev_add_device(struct rtc_device *rtc);
|
||||
extern void rtc_dev_del_device(struct rtc_device *rtc);
|
||||
|
||||
#else
|
||||
|
||||
static inline void rtc_dev_init(void)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_dev_exit(void)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_dev_prepare(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_dev_add_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_dev_del_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_RTC_INTF_PROC
|
||||
|
||||
extern void rtc_proc_add_device(struct rtc_device *rtc);
|
||||
extern void rtc_proc_del_device(struct rtc_device *rtc);
|
||||
|
||||
#else
|
||||
|
||||
static inline void rtc_proc_add_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_proc_del_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_RTC_INTF_SYSFS
|
||||
|
||||
extern void __init rtc_sysfs_init(struct class *);
|
||||
extern void rtc_sysfs_add_device(struct rtc_device *rtc);
|
||||
extern void rtc_sysfs_del_device(struct rtc_device *rtc);
|
||||
|
||||
#else
|
||||
|
||||
static inline void rtc_sysfs_init(struct class *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_sysfs_add_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void rtc_sysfs_del_device(struct rtc_device *rtc)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue