From: Alex Deucher Date: Tue, 27 May 2014 17:11:36 +0000 (-0400) Subject: drm/radeon: fix typo in radeon_connector_is_dp12_capable() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=af5d36539dfe043f1cf0f8b7334d6bb12cd14e75;p=linux-beck.git drm/radeon: fix typo in radeon_connector_is_dp12_capable() We were checking the ext clock rather than the display clock. Noticed by ArtForz on IRC. Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org --- diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c index ea50e0ae7bf7..bf73a04791ed 100644 --- a/drivers/gpu/drm/radeon/radeon_connectors.c +++ b/drivers/gpu/drm/radeon/radeon_connectors.c @@ -1387,7 +1387,7 @@ bool radeon_connector_is_dp12_capable(struct drm_connector *connector) struct radeon_device *rdev = dev->dev_private; if (ASIC_IS_DCE5(rdev) && - (rdev->clock.dp_extclk >= 53900) && + (rdev->clock.default_dispclk >= 53900) && radeon_connector_encoder_is_hbr2(connector)) { return true; }