xfree86: ddc: replace SIG_SETUP()

Trivial enough to replace it easily.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-27 19:36:59 +01:00
committed by Enrico Weigelt
parent 75177d9b72
commit de61093cad
2 changed files with 1 additions and 4 deletions

View File

@@ -28,9 +28,6 @@
/* input type */
#define DIGITAL(x) x
/* Signal level setup */
#define SIG_SETUP(x) (x)
/* sync characteristics */
#define SEP_SYNC(x) (x & 0x08)
#define COMP_SYNC(x) (x & 0x04)

View File

@@ -128,7 +128,7 @@ print_input_features(int scrnIndex, struct disp_features *c,
default:
xf86ErrorF("undefined\n");
}
if (SIG_SETUP(c->input_setup))
if (c->input_setup)
xf86DrvMsg(scrnIndex, X_INFO, "Signal levels configurable\n");
xf86DrvMsg(scrnIndex, X_INFO, "Sync:");
if (SEP_SYNC(c->input_sync))