blob: 0e98e679d3a749cfda3898c2fe59f82d18ca87c3 [file] [log] [blame]
Matthew Garrett74a365b2009-03-19 21:35:39 +00001#ifndef __ACPI_VIDEO_H
2#define __ACPI_VIDEO_H
3
Chris Wilsonb72512e2010-09-05 14:51:49 +01004#include <linux/errno.h> /* for ENODEV */
5
6struct acpi_device;
7
Matthew Garrette92a7162010-01-12 14:17:03 -05008#define ACPI_VIDEO_DISPLAY_CRT 1
9#define ACPI_VIDEO_DISPLAY_TV 2
10#define ACPI_VIDEO_DISPLAY_DVI 3
11#define ACPI_VIDEO_DISPLAY_LCD 4
12
13#define ACPI_VIDEO_DISPLAY_LEGACY_MONITOR 0x0100
14#define ACPI_VIDEO_DISPLAY_LEGACY_PANEL 0x0110
15#define ACPI_VIDEO_DISPLAY_LEGACY_TV 0x0200
16
Matthew Garrett74a365b2009-03-19 21:35:39 +000017#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
18extern int acpi_video_register(void);
Zhao Yakui86e437f2009-06-16 11:23:13 +080019extern void acpi_video_unregister(void);
Matthew Garrette92a7162010-01-12 14:17:03 -050020extern int acpi_video_get_edid(struct acpi_device *device, int type,
21 int device_id, void **edid);
Matthew Garrett74a365b2009-03-19 21:35:39 +000022#else
23static inline int acpi_video_register(void) { return 0; }
Zhao Yakui86e437f2009-06-16 11:23:13 +080024static inline void acpi_video_unregister(void) { return; }
Matthew Garrette92a7162010-01-12 14:17:03 -050025static inline int acpi_video_get_edid(struct acpi_device *device, int type,
26 int device_id, void **edid)
27{
28 return -ENODEV;
29}
Matthew Garrett74a365b2009-03-19 21:35:39 +000030#endif
31
32#endif