Commit 24ff3dc1 authored by José Roberto de Souza's avatar José Roberto de Souza Committed by Lyude Paul
Browse files

drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms()



Commit 3769e4c0 ("drm/dp_mst: Avoid to mess up payload table by
ports in stale topology") added to calls to drm_dbg_kms() but it
missed the first parameter, the drm device breaking the build.

Fixes: 3769e4c0 ("drm/dp_mst: Avoid to mess up payload table by ports in stale topology")
Cc: Wayne Lin <Wayne.Lin@amd.com>
Cc: Lyude Paul <lyude@redhat.com>
Cc: dri-devel@lists.freedesktop.org
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJosé Roberto de Souza <jose.souza@intel.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210616194415.36926-1-jose.souza@intel.com
parent 3769e4c0
Loading
Loading
Loading
Loading
+5 −2
Original line number Original line Diff line number Diff line
@@ -3389,7 +3389,9 @@ int drm_dp_update_payload_part1(struct drm_dp_mst_topology_mgr *mgr)
			mutex_unlock(&mgr->lock);
			mutex_unlock(&mgr->lock);


			if (skip) {
			if (skip) {
				drm_dbg_kms("Virtual channel %d is not in current topology\n", i);
				drm_dbg_kms(mgr->dev,
					    "Virtual channel %d is not in current topology\n",
					    i);
				continue;
				continue;
			}
			}
			/* Validated ports don't matter if we're releasing
			/* Validated ports don't matter if we're releasing
@@ -3404,7 +3406,8 @@ int drm_dp_update_payload_part1(struct drm_dp_mst_topology_mgr *mgr)
						payload->start_slot = req_payload.start_slot;
						payload->start_slot = req_payload.start_slot;
						continue;
						continue;
					} else {
					} else {
						drm_dbg_kms("Fail:set payload to invalid sink");
						drm_dbg_kms(mgr->dev,
							    "Fail:set payload to invalid sink");
						mutex_unlock(&mgr->payload_lock);
						mutex_unlock(&mgr->payload_lock);
						return -EINVAL;
						return -EINVAL;
					}
					}