OSDN Git Service

drm/amdgpu: clean up some inconsistent indenting
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 13 Jan 2022 07:11:32 +0000 (15:11 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 14 Jan 2022 22:52:10 +0000 (17:52 -0500)
Eliminate the follow smatch warnings:
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:3504 amdgpu_device_init()
warn: inconsistent indenting
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:1716
amdgpu_ras_error_status_query() warn: if statement not indented
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:1058 amdgpu_ras_error_inject()
warn: inconsistent indenting

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Reviewed-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c

index 71b814f..7dd7ef7 100644 (file)
@@ -3498,7 +3498,7 @@ int amdgpu_device_init(struct amdgpu_device *adev,
        mutex_init(&adev->psp.mutex);
        mutex_init(&adev->notifier_lock);
 
-        amdgpu_device_init_apu_flags(adev);
+       amdgpu_device_init_apu_flags(adev);
 
        r = amdgpu_device_check_arguments(adev);
        if (r)
index 64eed01..d37b09b 100644 (file)
@@ -1055,8 +1055,10 @@ int amdgpu_ras_error_inject(struct amdgpu_device *adev,
                .address = info->address,
                .value = info->value,
        };
-    int ret = -EINVAL;
-    struct amdgpu_ras_block_object* block_obj = amdgpu_ras_get_ras_block(adev, info->head.block, info->head.sub_block_index);
+       int ret = -EINVAL;
+       struct amdgpu_ras_block_object *block_obj = amdgpu_ras_get_ras_block(adev,
+                                                       info->head.block,
+                                                       info->head.sub_block_index);
 
        if (!obj)
                return -EINVAL;
@@ -1714,7 +1716,7 @@ static void amdgpu_ras_error_status_query(struct amdgpu_device *adev,
        }
 
        if (block_obj->hw_ops->query_ras_error_status)
-       block_obj->hw_ops->query_ras_error_status(adev);
+               block_obj->hw_ops->query_ras_error_status(adev);
 
 }