diff options
| author | Alex Deucher <alexander.deucher@amd.com> | 2020-11-30 18:36:41 -0500 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2020-12-02 17:37:16 -0500 |
| commit | 402bdef8a5cbd5a6922a5bd7e109c411ef7d28ee (patch) | |
| tree | 0f3591818f0b08341ab6a1b12781e9fd964b3be2 | |
| parent | cfcc59d4c1af761a262c38e5bb65a4d631e1e9c6 (diff) | |
| download | cachepc-linux-402bdef8a5cbd5a6922a5bd7e109c411ef7d28ee.tar.gz cachepc-linux-402bdef8a5cbd5a6922a5bd7e109c411ef7d28ee.zip | |
drm/amdgpu/powerplay/iceland: return an error if copying to smc fails
Rather than just silently dropping it. Also fixes a set but
unused variable warning.
Reviewed-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
| -rw-r--r-- | drivers/gpu/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c b/drivers/gpu/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c index 6a0f581de999..03df35dee8ba 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c +++ b/drivers/gpu/drm/amd/pm/powerplay/smumgr/iceland_smumgr.c @@ -2156,7 +2156,7 @@ static int iceland_thermal_setup_fan_table(struct pp_hwmgr *hwmgr) res = smu7_copy_bytes_to_smc(hwmgr, smu7_data->fan_table_start, (uint8_t *)&fan_table, (uint32_t)sizeof(fan_table), SMC_RAM_END); - return 0; + return res; } |
