xfree86: ddc: drop obsolete DFP1() macro

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-27 15:19:25 +01:00
committed by Enrico Weigelt
parent 86c6e75117
commit 78953e5965
2 changed files with 1 additions and 4 deletions

View File

@@ -297,9 +297,6 @@
/* input type */
#define DIGITAL(x) x
/* DFP */
#define DFP1(x) x
/* input voltage level */
#define V070 0 /* 0.700V/0.300V */
#define V071 1 /* 0.714V/0.286V */

View File

@@ -71,7 +71,7 @@ print_input_features(int scrnIndex, struct disp_features *c,
if (DIGITAL(c->input_type)) {
xf86DrvMsg(scrnIndex, X_INFO, "Digital Display Input\n");
if (v->revision == 2 || v->revision == 3) {
if (DFP1(c->input_dfp))
if (c->input_dfp)
xf86DrvMsg(scrnIndex, X_INFO, "DFP 1.x compatible TMDS\n");
}
else if (v->revision >= 4) {