Release 4.12 include/linux/apple_bl.h
/*
* apple_bl exported symbols
*/
#ifndef _LINUX_APPLE_BL_H
#define _LINUX_APPLE_BL_H
#if defined(CONFIG_BACKLIGHT_APPLE) || defined(CONFIG_BACKLIGHT_APPLE_MODULE)
extern int apple_bl_register(void);
extern void apple_bl_unregister(void);
#else /* !CONFIG_BACKLIGHT_APPLE */
static inline int apple_bl_register(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Seth Forshee | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static inline void apple_bl_unregister(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Seth Forshee | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
#endif /* !CONFIG_BACKLIGHT_APPLE */
#endif /* _LINUX_APPLE_BL_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Seth Forshee | 51 | 83.61% | 1 | 50.00% |
H Hartley Sweeten | 10 | 16.39% | 1 | 50.00% |
Total | 61 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.