From: Rex Zhu <[email protected]> some cards don't support led config. so not return error in this case.
Signed-off-by: Rex Zhu <[email protected]> Signed-off-by: Alex Deucher <[email protected]> --- drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c index 4becd57..43fdbb1 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c @@ -873,7 +873,7 @@ static int vega10_setup_dpm_led_config(struct pp_hwmgr *hwmgr) pp_table->LedPin0 = (uint8_t)(mask & 0xff); pp_table->LedPin1 = (uint8_t)((mask >> 8) & 0xff); pp_table->LedPin2 = (uint8_t)((mask >> 16) & 0xff); - return ret; + return 0; } static int vega10_setup_asic_task(struct pp_hwmgr *hwmgr) -- 2.5.5 _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
