Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Ran Sun and committed by
Alex Deucher
dc200356 b5ac0880

+2 -3
+2 -3
drivers/gpu/drm/radeon/radeon_connectors.c
··· 198 198 DRM_DEBUG("%s: HDMI deep color 10 bpc exceeds max tmds clock. Using %d bpc.\n", 199 199 connector->name, bpc); 200 200 } 201 - } 202 - else if (bpc > 8) { 201 + } else if (bpc > 8) { 203 202 /* max_tmds_clock missing, but hdmi spec mandates it for deep color. */ 204 203 DRM_DEBUG("%s: Required max tmds clock for HDMI deep color missing. Using 8 bpc.\n", 205 204 connector->name); ··· 1371 1372 /* assume digital unless load detected otherwise */ 1372 1373 radeon_connector->use_digital = true; 1373 1374 lret = encoder_funcs->detect(encoder, connector); 1374 - DRM_DEBUG_KMS("load_detect %x returned: %x\n",encoder->encoder_type,lret); 1375 + DRM_DEBUG_KMS("load_detect %x returned: %x\n", encoder->encoder_type, lret); 1375 1376 if (lret == connector_status_connected) 1376 1377 radeon_connector->use_digital = false; 1377 1378 }