From ebe91d83d357c4d4b49f5a04a4e31c803dbee508 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 27 Jan 2026 15:42:06 +0100 Subject: [PATCH] xfree86: ddc: drop obsolete IS_RIGHT_ON_SYNC() and IS_LEFT_STEREO() Not used anymore, so no need to keep them around any longer. Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/ddc/edid.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/hw/xfree86/ddc/edid.h b/hw/xfree86/ddc/edid.h index f9bb6f9a28..1e53b56a5a 100644 --- a/hw/xfree86/ddc/edid.h +++ b/hw/xfree86/ddc/edid.h @@ -325,8 +325,6 @@ #define IS_RIGHT_STEREO(x) (x & 0x01) #define IS_LEFT_STEREO(x) (x & 0x02) #define IS_4WAY_STEREO(x) (x & 0x03) -#define IS_RIGHT_ON_SYNC(x) IS_RIGHT_STEREO(x) -#define IS_LEFT_ON_SYNC(x) IS_LEFT_STEREO(x) struct vendor { char name[4];