Commit 2cbc6f42 authored by Guchun Chen's avatar Guchun Chen Committed by Alex Deucher

drm/amd/display: fix error case handling

Otherwise, we will run into error case path.

v2: fix build when CONFIG_DRM_AMD_DC_DCN is not set
Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarGuchun Chen <guchun.chen@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 75a07bcd
...@@ -4211,11 +4211,12 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev) ...@@ -4211,11 +4211,12 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
} }
break; break;
default: default:
break; DRM_ERROR("Unsupported DCE IP versions: 0x%X\n",
adev->ip_versions[DCE_HWIP]);
goto fail;
} }
#endif #endif
DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type); break;
goto fail;
} }
return 0; return 0;
...@@ -4394,11 +4395,12 @@ static int dm_early_init(void *handle) ...@@ -4394,11 +4395,12 @@ static int dm_early_init(void *handle)
adev->mode_info.num_dig = 4; adev->mode_info.num_dig = 4;
break; break;
default: default:
break; DRM_ERROR("Unsupported DCE IP versions: 0x%x\n",
adev->ip_versions[DCE_HWIP]);
return -EINVAL;
} }
#endif #endif
DRM_ERROR("Unsupported ASIC type: 0x%X\n", adev->asic_type); break;
return -EINVAL;
} }
amdgpu_dm_set_irq_funcs(adev); amdgpu_dm_set_irq_funcs(adev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment