]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/amd/powerplay: change function name to make code more readable
authorRex Zhu <Rex.Zhu@amd.com>
Thu, 29 Dec 2016 07:30:38 +0000 (15:30 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 27 Jan 2017 16:13:02 +0000 (11:13 -0500)
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.h
drivers/gpu/drm/amd/powerplay/hwmgr/hwmgr.c
drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
drivers/gpu/drm/amd/powerplay/inc/hwmgr.h

index 2f0638c6d41fd4bf79e5c48f4604743fd92a939b..c15af0b6797cd22fc74c569009bbb42f03e6b049 100644 (file)
@@ -1945,7 +1945,7 @@ static const struct pp_hwmgr_func cz_hwmgr_funcs = {
        .read_sensor = cz_read_sensor,
 };
 
-int cz_hwmgr_init(struct pp_hwmgr *hwmgr)
+int cz_init_function_pointers(struct pp_hwmgr *hwmgr)
 {
        hwmgr->hwmgr_func = &cz_hwmgr_funcs;
        hwmgr->pptable_func = &pptable_funcs;
index c477f1cf3f23d7361014828906211790d5f23a13..508b422d61591046a8d455cdb50fe808cd1318d7 100644 (file)
@@ -316,7 +316,6 @@ struct cz_hwmgr {
 
 struct pp_hwmgr;
 
-int cz_hwmgr_init(struct pp_hwmgr *hwmgr);
 int cz_dpm_powerdown_uvd(struct pp_hwmgr *hwmgr);
 int cz_dpm_powerup_uvd(struct pp_hwmgr *hwmgr);
 int cz_dpm_powerdown_vce(struct pp_hwmgr *hwmgr);
index b9d7451a4908b73c410f7dac79c26da7eaf384ef..2f6225e8486759cda7249949567cb696790a0fa5 100644 (file)
@@ -36,7 +36,7 @@
 #include "pp_acpi.h"
 #include "amd_acpi.h"
 
-extern int cz_hwmgr_init(struct pp_hwmgr *hwmgr);
+extern int cz_init_function_pointers(struct pp_hwmgr *hwmgr);
 
 static int polaris_set_asic_special_caps(struct pp_hwmgr *hwmgr);
 static void hwmgr_init_default_caps(struct pp_hwmgr *hwmgr);
@@ -76,7 +76,7 @@ int hwmgr_early_init(struct pp_instance *handle)
 
        switch (hwmgr->chip_family) {
        case AMDGPU_FAMILY_CZ:
-               cz_hwmgr_init(hwmgr);
+               cz_init_function_pointers(hwmgr);
                break;
        case AMDGPU_FAMILY_VI:
                switch (hwmgr->chip_id) {
@@ -104,7 +104,7 @@ int hwmgr_early_init(struct pp_instance *handle)
                default:
                        return -EINVAL;
                }
-               smu7_hwmgr_init(hwmgr);
+               smu7_init_function_pointers(hwmgr);
                break;
        default:
                return -EINVAL;
index e0eef49ce6ef8060c6423c4c606ed9ad0a1044bf..a54f6306182a3f2ce26b94c2d29d7a8f08d02647 100644 (file)
@@ -4437,7 +4437,7 @@ uint8_t smu7_get_sleep_divider_id_from_clock(uint32_t clock,
        return i;
 }
 
-int smu7_hwmgr_init(struct pp_hwmgr *hwmgr)
+int smu7_init_function_pointers(struct pp_hwmgr *hwmgr)
 {
        int ret = 0;
 
index c50e840ca17d23e4c0caf60567f73d0c037e1f12..27217a7ae039a59d58416d5e323db6e75bc960cb 100644 (file)
@@ -688,7 +688,7 @@ extern int phm_initializa_dynamic_state_adjustment_rule_settings(struct pp_hwmgr
 extern uint32_t phm_get_lowest_enabled_level(struct pp_hwmgr *hwmgr, uint32_t mask);
 extern void phm_apply_dal_min_voltage_request(struct pp_hwmgr *hwmgr);
 
-extern int smu7_hwmgr_init(struct pp_hwmgr *hwmgr);
+extern int smu7_init_function_pointers(struct pp_hwmgr *hwmgr);
 extern int phm_get_voltage_evv_on_sclk(struct pp_hwmgr *hwmgr, uint8_t voltage_type,
                                uint32_t sclk, uint16_t id, uint16_t *voltage);