blob: 0a95e730fcea706a185f52af4b3c563ee40e7d7f [file] [log] [blame]
Seth Forshee83e72dd2012-03-16 14:41:21 -05001/*
2 * apple_bl exported symbols
3 */
4
5#ifndef _LINUX_APPLE_BL_H
6#define _LINUX_APPLE_BL_H
7
H Hartley Sweeten1615d2102012-05-29 15:07:14 -07008#if defined(CONFIG_BACKLIGHT_APPLE) || defined(CONFIG_BACKLIGHT_APPLE_MODULE)
Seth Forshee83e72dd2012-03-16 14:41:21 -05009
10extern int apple_bl_register(void);
11extern void apple_bl_unregister(void);
12
13#else /* !CONFIG_BACKLIGHT_APPLE */
14
15static inline int apple_bl_register(void)
16{
17 return 0;
18}
19
20static inline void apple_bl_unregister(void)
21{
22}
23
24#endif /* !CONFIG_BACKLIGHT_APPLE */
25
26#endif /* _LINUX_APPLE_BL_H */