diff --git a/hw/xfree86/ddc/edid.h b/hw/xfree86/ddc/edid.h index 92c40a77bb..3c10037141 100644 --- a/hw/xfree86/ddc/edid.h +++ b/hw/xfree86/ddc/edid.h @@ -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; diff --git a/hw/xfree86/ddc/print_edid.c b/hw/xfree86/ddc/print_edid.c index 5737e0be58..0c2b1b6643 100644 --- a/hw/xfree86/ddc/print_edid.c +++ b/hw/xfree86/ddc/print_edid.c @@ -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) {