Commit ad88f051 authored by Huang Rui's avatar Huang Rui Committed by Alex Deucher

drm/amd/powerplay: don't check hwmgr while using the sw smu

While using the sw smu path, driver won't init hwmgr structure.
Signed-off-by: default avatarHuang Rui <ray.huang@amd.com>
Reviewed-by: default avatarKevin Wang <kevin1.wang@amd.com>
Reviewed-by: default avatarLikun Gao <Likun.Gao@amd.com>
Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 6316f51c
...@@ -2443,7 +2443,7 @@ int amdgpu_pm_sysfs_init(struct amdgpu_device *adev) ...@@ -2443,7 +2443,7 @@ int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
"pp_power_profile_mode\n"); "pp_power_profile_mode\n");
return ret; return ret;
} }
if (hwmgr->od_enabled) { if (is_support_sw_smu(adev) || hwmgr->od_enabled) {
ret = device_create_file(adev->dev, ret = device_create_file(adev->dev,
&dev_attr_pp_od_clk_voltage); &dev_attr_pp_od_clk_voltage);
if (ret) { if (ret) {
......
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