diff --git a/hw/xfree86/ddc/edid.h b/hw/xfree86/ddc/edid.h index 0ac4d5dfe..cec263897 100644 --- a/hw/xfree86/ddc/edid.h +++ b/hw/xfree86/ddc/edid.h @@ -22,12 +22,6 @@ /* input type */ #define DIGITAL(x) x -/* sync characteristics */ -#define SEP_SYNC(x) (x & 0x08) -#define COMP_SYNC(x) (x & 0x04) -#define SYNC_O_GREEN(x) (x & 0x02) -#define SYNC_SERR(x) (x & 0x01) - /* Msc stuff EDID Ver > 1.1 */ #define PREFERRED_TIMING_MODE(x) (x & 0x2) #define GTF_SUPPORTED(x) (x & 0x1) diff --git a/hw/xfree86/ddc/print_edid.c b/hw/xfree86/ddc/print_edid.c index 0c2b1b664..24a9a52f7 100644 --- a/hw/xfree86/ddc/print_edid.c +++ b/hw/xfree86/ddc/print_edid.c @@ -64,6 +64,12 @@ #define IS_LEFT_STEREO(x) (x & 0x02) #define IS_4WAY_STEREO(x) (x & 0x03) +/* sync characteristics */ +#define SEP_SYNC(x) (x & 0x08) +#define COMP_SYNC(x) (x & 0x04) +#define SYNC_O_GREEN(x) (x & 0x02) +#define SYNC_SERR(x) (x & 0x01) + static void print_vendor(int scrnIndex, struct vendor *c) {