mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 16:29:05 +00:00
27 lines
411 B
C
27 lines
411 B
C
|
/*
|
||
|
* apple_bl exported symbols
|
||
|
*/
|
||
|
|
||
|
#ifndef _LINUX_APPLE_BL_H
|
||
|
#define _LINUX_APPLE_BL_H
|
||
|
|
||
|
#ifdef CONFIG_BACKLIGHT_APPLE
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
static inline void apple_bl_unregister(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#endif /* !CONFIG_BACKLIGHT_APPLE */
|
||
|
|
||
|
#endif /* _LINUX_APPLE_BL_H */
|