diff options
author | Ben Skeggs <[email protected]> | 2023-09-19 17:56:33 -0400 |
---|---|---|
committer | Lyude Paul <[email protected]> | 2023-09-19 18:22:25 -0400 |
commit | 56d732839ea0ec327848df021ae4185c413e3916 (patch) | |
tree | 303ac712803d692b24a811fe90c4e3efd0fa3f7b | |
parent | cb3ec8cbd00edb3a32d114da4874cda090766c76 (diff) |
drm/nouveau/disp/nv50-: skip DCB_OUTPUT_TV
We've never supported it.
Signed-off-by: Ben Skeggs <[email protected]>
Acked-by: Danilo Krummrich <[email protected]>
Signed-off-by: Lyude Paul <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.c b/drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.c index 4be09ec4fd5c..2d05e2f7e46b 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.c @@ -1656,7 +1656,6 @@ nv50_disp_oneinit(struct nvkm_disp *disp) switch (dcbE.type) { case DCB_OUTPUT_ANALOG: - case DCB_OUTPUT_TV: case DCB_OUTPUT_TMDS: case DCB_OUTPUT_LVDS: ret = nvkm_outp_new(disp, i, &dcbE, &outp); @@ -1664,6 +1663,7 @@ nv50_disp_oneinit(struct nvkm_disp *disp) case DCB_OUTPUT_DP: ret = nvkm_dp_new(disp, i, &dcbE, &outp); break; + case DCB_OUTPUT_TV: case DCB_OUTPUT_WFD: /* No support for WFD yet. */ ret = -ENODEV; |