diff options
author | Rex Zhu <Rex.Zhu@amd.com> | 2017-09-20 22:34:48 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-09-26 15:14:19 -0400 |
commit | 6042e8560ef448aa1a9ca16473f0a5a264462f41 (patch) | |
tree | 0b5fba67fc8bca3e230252f4629e0c578e31c0f7 | |
parent | 5c58301856e69223b85546fac319363eef1ac1b9 (diff) |
drm/amd/powerplay: refine phm_register_thermal_interrupt interface
currently, not all asics implement this callback function
so not return error to avoid powerplay initialize failed
in those asices
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c index f31d2cf91f1a..623cff90233d 100644 --- a/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/hardwaremanager.c | |||
@@ -210,10 +210,10 @@ int phm_register_thermal_interrupt(struct pp_hwmgr *hwmgr, const void *info) | |||
210 | { | 210 | { |
211 | PHM_FUNC_CHECK(hwmgr); | 211 | PHM_FUNC_CHECK(hwmgr); |
212 | 212 | ||
213 | if (hwmgr->hwmgr_func->register_internal_thermal_interrupt == NULL) | 213 | if (hwmgr->hwmgr_func->register_internal_thermal_interrupt != NULL) |
214 | return -EINVAL; | 214 | return hwmgr->hwmgr_func->register_internal_thermal_interrupt(hwmgr, info); |
215 | 215 | ||
216 | return hwmgr->hwmgr_func->register_internal_thermal_interrupt(hwmgr, info); | 216 | return 0; |
217 | } | 217 | } |
218 | 218 | ||
219 | /** | 219 | /** |