Skip to content

Commit 26143d2

Browse files
Dan Carpenteralexdeucher
authored andcommitted
drm/amdgpu: indent an if statement
The "return true;" line wasn't indented. Also checkpatch likes when we align the && conditions. Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent 5159861 commit 26143d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,8 +1400,8 @@ bool amdgpu_is_kicker_fw(struct amdgpu_device *adev)
14001400

14011401
for (i = 0; i < ARRAY_SIZE(kicker_device_list); i++) {
14021402
if (adev->pdev->device == kicker_device_list[i].device &&
1403-
adev->pdev->revision == kicker_device_list[i].revision)
1404-
return true;
1403+
adev->pdev->revision == kicker_device_list[i].revision)
1404+
return true;
14051405
}
14061406

14071407
return false;

0 commit comments

Comments
 (0)