xfree86: ddc: drop obsolete IS_STEREO() macro

It's not actually doing something, so we don't really need it.

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:03:52 +01:00
committed by Enrico Weigelt
parent de61093cad
commit f4a84dc23c
2 changed files with 1 additions and 2 deletions

View File

@@ -40,7 +40,6 @@
#define CVT_SUPPORTED(x) (x & 0x1)
/* detailed timing misc */
#define IS_STEREO(x) (x)
#define IS_RIGHT_STEREO(x) (x & 0x01)
#define IS_LEFT_STEREO(x) (x & 0x02)
#define IS_4WAY_STEREO(x) (x & 0x03)

View File

@@ -363,7 +363,7 @@ print_detailed_timings(int scrnIndex, struct detailed_timings *t)
t->v_sync_off + t->v_sync_width + t->v_active,
t->v_active + t->v_blanking);
xf86ErrorF("v_border: %i\n", t->v_border);
if (IS_STEREO(t->stereo)) {
if (t->stereo) {
xf86DrvMsg(scrnIndex, X_INFO, "Stereo: ");
if (IS_RIGHT_STEREO(t->stereo)) {
if (!t->stereo_1)