|
@@ -22,6 +22,7 @@ extern void acpi_video_unregister(void);
|
|
|
extern void acpi_video_unregister_backlight(void);
|
|
|
extern int acpi_video_get_edid(struct acpi_device *device, int type,
|
|
|
int device_id, void **edid);
|
|
|
+extern bool acpi_video_verify_backlight_support(void);
|
|
|
#else
|
|
|
static inline int acpi_video_register(void) { return 0; }
|
|
|
static inline void acpi_video_unregister(void) { return; }
|
|
@@ -31,6 +32,7 @@ static inline int acpi_video_get_edid(struct acpi_device *device, int type,
|
|
|
{
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
+static inline bool acpi_video_verify_backlight_support(void) { return false; }
|
|
|
#endif
|
|
|
|
|
|
#endif
|