Commit ab3b9de6 authored by Yang Li's avatar Yang Li Committed by Alex Deucher
Browse files

drm/amdgpu: clean up some inconsistent indenting



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: default avatarAbaci Robot <abaci@linux.alibaba.com>
Reviewed-by: default avatarGuchun Chen <guchun.chen@amd.com>
Signed-off-by: default avatarYang Li <yang.lee@linux.alibaba.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 69f91d32
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1056,7 +1056,9 @@ int amdgpu_ras_error_inject(struct amdgpu_device *adev,
		.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);
	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;
+1 −1

File changed.

Contains only whitespace changes.