xfree86: ddc: move DPMS_*() macros into print_edid.c

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-27 17:56:52 +01:00
committed by Enrico Weigelt
parent 1649eb38d5
commit bfe6712c35
2 changed files with 5 additions and 5 deletions

View File

@@ -308,11 +308,6 @@
#define SYNC_O_GREEN(x) (x & 0x02)
#define SYNC_SERR(x) (x & 0x01)
/* DPMS features */
#define DPMS_STANDBY(x) (x & 0x04)
#define DPMS_SUSPEND(x) (x & 0x02)
#define DPMS_OFF(x) (x & 0x01)
/* Msc stuff EDID Ver > 1.1 */
#define PREFERRED_TIMING_MODE(x) (x & 0x2)
#define GTF_SUPPORTED(x) (x & 0x1)

View File

@@ -46,6 +46,11 @@
#define DISP_YCRCB444 0x01
#define DISP_YCRCB422 0x02
/* DPMS features */
#define DPMS_STANDBY(x) (x & 0x04)
#define DPMS_SUSPEND(x) (x & 0x02)
#define DPMS_OFF(x) (x & 0x01)
#define STD_COLOR_SPACE(x) (x & 0x4)
#define GFT_SUPPORTED(x) (x & 0x1)