mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: do not create ras debugfs/sysfs node for ASICs that don't have ras ability
driver shouldn't init any ras debugfs/sysfs node for ASICs that don't have ras hardware ability Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com> Reviewed-by: Feifei Xu <Feifei.Xu@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
23d66e75d7
commit
5f872b723a
|
@ -1557,6 +1557,12 @@ int amdgpu_ras_init(struct amdgpu_device *adev)
|
||||||
|
|
||||||
amdgpu_ras_check_supported(adev, &con->hw_supported,
|
amdgpu_ras_check_supported(adev, &con->hw_supported,
|
||||||
&con->supported);
|
&con->supported);
|
||||||
|
if (!con->hw_supported) {
|
||||||
|
amdgpu_ras_set_context(adev, NULL);
|
||||||
|
kfree(con);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
con->features = 0;
|
con->features = 0;
|
||||||
INIT_LIST_HEAD(&con->head);
|
INIT_LIST_HEAD(&con->head);
|
||||||
/* Might need get this flag from vbios. */
|
/* Might need get this flag from vbios. */
|
||||||
|
|
Loading…
Reference in New Issue