xfree86: ddc: move CVT_SUPPORTED to private header

Not used by any external driver, so no need to keep it in public header.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-23 20:37:21 +01:00
committed by Enrico Weigelt
parent 88a58ed15c
commit 46741a8645
2 changed files with 3 additions and 1 deletions

View File

@@ -25,7 +25,6 @@
/* Msc stuff EDID Ver > 1.1 */
#define PREFERRED_TIMING_MODE(x) (x & 0x2)
#define GTF_SUPPORTED(x) (x & 0x1)
#define CVT_SUPPORTED(x) (x & 0x1)
struct vendor {
char name[4];

View File

@@ -277,4 +277,7 @@
#define _NEXT_DT_MD_SECTION(x) (x = (x + DET_TIMING_INFO_LEN))
/* Msc stuff EDID Ver > 1.1 */
#define CVT_SUPPORTED(x) (x & 0x1)
#endif /* _XFREE86_EDID_PRIV_H_ */