From: Ben Skeggs Date: Tue, 14 Jan 2020 01:31:01 +0000 (+1000) Subject: drm/nouveau/disp/dp: fix typo when determining failsafe link configuration X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=409d659fe11d778a8f505f909815bc867a27ecbf;p=linux.git drm/nouveau/disp/dp: fix typo when determining failsafe link configuration Signed-off-by: Ben Skeggs --- diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c b/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c index 818d21bd28d31..3800aeb507d01 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c @@ -365,7 +365,7 @@ nvkm_dp_train(struct nvkm_dp *dp, u32 dataKBps) * and it's better to have a failed modeset than that. */ for (cfg = nvkm_dp_rates; cfg->rate; cfg++) { - if (cfg->nr <= outp_nr && cfg->nr <= outp_bw) { + if (cfg->nr <= outp_nr && cfg->bw <= outp_bw) { /* Try to respect sink limits too when selecting * lowest link configuration. */