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

Only used there, so no need to keep them 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-28 19:06:27 +01:00
committed by Enrico Weigelt
parent e38aaa19b1
commit aab09a7b73
2 changed files with 5 additions and 5 deletions

View File

@@ -36,11 +36,6 @@
#define GTF_SUPPORTED(x) (x & 0x1)
#define CVT_SUPPORTED(x) (x & 0x1)
/* detailed timing misc */
#define IS_RIGHT_STEREO(x) (x & 0x01)
#define IS_LEFT_STEREO(x) (x & 0x02)
#define IS_4WAY_STEREO(x) (x & 0x03)
struct vendor {
char name[4];
int prod_id;

View File

@@ -59,6 +59,11 @@
#define EDID_WIDTH 16
/* detailed timing misc */
#define IS_RIGHT_STEREO(x) (x & 0x01)
#define IS_LEFT_STEREO(x) (x & 0x02)
#define IS_4WAY_STEREO(x) (x & 0x03)
static void
print_vendor(int scrnIndex, struct vendor *c)
{