1 /* Public domain. */ 2 3 #ifndef _ACPI_VIDEO_H 4 #define _ACPI_VIDEO_H 5 6 #include <linux/types.h> 7 8 static inline void 9 acpi_video_register(void) 10 { 11 } 12 13 static inline void 14 acpi_video_unregister(void) 15 { 16 } 17 18 static inline void 19 acpi_video_register_backlight(void) 20 { 21 } 22 23 static inline bool 24 acpi_video_backlight_use_native(void) 25 { 26 return true; 27 } 28 29 static inline void 30 acpi_video_report_nolcd(void) 31 { 32 } 33 34 #endif 35