drm/amdgpu/pm: Fix code alignment issue
authorMa Jun <Jun.Ma2@amd.com>
Thu, 9 May 2024 02:38:41 +0000 (10:38 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 13 May 2024 20:11:52 +0000 (16:11 -0400)
Fix code alignment issue

Signed-off-by: Ma Jun <Jun.Ma2@amd.com>
Reported-by: Yang Wang <kevinyang.wang@amd.com>
Reviewed-by: Yang Wang <kevinyang.wang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/pm/amdgpu_pm.c
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c

index ec9058c..110f2fc 100644 (file)
@@ -4381,8 +4381,8 @@ int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
        /* under multi-vf mode, the hwmon attributes are all not supported */
        if (mode != SRIOV_VF_MODE_MULTI_VF) {
                adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
-                                                                                                               DRIVER_NAME, adev,
-                                                                                                               hwmon_groups);
+                                                                       DRIVER_NAME, adev,
+                                                                       hwmon_groups);
                if (IS_ERR(adev->pm.int_hwmon_dev)) {
                        ret = PTR_ERR(adev->pm.int_hwmon_dev);
                        dev_err(adev->dev, "Unable to register hwmon device: %d\n", ret);
index f7e756c..6c24e23 100644 (file)
@@ -2562,8 +2562,8 @@ static int smu_v13_0_0_set_power_profile_mode(struct smu_context *smu,
                        (amdgpu_ip_version(smu->adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 10) &&
                         smu->adev->pm.fw_version >= 0x00504500)) {
                        workload_type = smu_cmn_to_asic_specific_index(smu,
-                                                                                                                  CMN2ASIC_MAPPING_WORKLOAD,
-                                                                                                                  PP_SMC_POWER_PROFILE_POWERSAVING);
+                                                               CMN2ASIC_MAPPING_WORKLOAD,
+                                                               PP_SMC_POWER_PROFILE_POWERSAVING);
                        if (workload_type >= 0)
                                workload_mask |= 1 << workload_type;
                }