drm/radeon: add missing spaces after ',' and else should follow close brace '}'
ERROR: else should follow close brace '}' ERROR: space required after that ',' (ctx:VxV) Signed-off-by: Ran Sun <sunran001@208suo.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
b5ac08806c
commit
dc2003560c
1 changed files with 2 additions and 3 deletions
|
@ -198,8 +198,7 @@ int radeon_get_monitor_bpc(struct drm_connector *connector)
|
|||
DRM_DEBUG("%s: HDMI deep color 10 bpc exceeds max tmds clock. Using %d bpc.\n",
|
||||
connector->name, bpc);
|
||||
}
|
||||
}
|
||||
else if (bpc > 8) {
|
||||
} else if (bpc > 8) {
|
||||
/* max_tmds_clock missing, but hdmi spec mandates it for deep color. */
|
||||
DRM_DEBUG("%s: Required max tmds clock for HDMI deep color missing. Using 8 bpc.\n",
|
||||
connector->name);
|
||||
|
@ -1372,7 +1371,7 @@ radeon_dvi_detect(struct drm_connector *connector, bool force)
|
|||
/* assume digital unless load detected otherwise */
|
||||
radeon_connector->use_digital = true;
|
||||
lret = encoder_funcs->detect(encoder, connector);
|
||||
DRM_DEBUG_KMS("load_detect %x returned: %x\n",encoder->encoder_type,lret);
|
||||
DRM_DEBUG_KMS("load_detect %x returned: %x\n", encoder->encoder_type, lret);
|
||||
if (lret == connector_status_connected)
|
||||
radeon_connector->use_digital = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue