Skip to content

Commit 1f45f1c

Browse files
Ran Sunalexdeucher
authored andcommitted
drm/amdgpu: Clean up errors in vega20_ih.c
Fix the following errors reported by checkpatch: ERROR: trailing statements should be on next line ERROR: that open brace { should be on the previous line Signed-off-by: Ran Sun <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 46eb29b commit 1f45f1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,8 @@ static int vega20_ih_self_irq(struct amdgpu_device *adev,
500500
case 2:
501501
schedule_work(&adev->irq.ih2_work);
502502
break;
503-
default: break;
503+
default:
504+
break;
504505
}
505506
return 0;
506507
}
@@ -710,8 +711,7 @@ static void vega20_ih_set_interrupt_funcs(struct amdgpu_device *adev)
710711
adev->irq.ih_funcs = &vega20_ih_funcs;
711712
}
712713

713-
const struct amdgpu_ip_block_version vega20_ih_ip_block =
714-
{
714+
const struct amdgpu_ip_block_version vega20_ih_ip_block = {
715715
.type = AMD_IP_BLOCK_TYPE_IH,
716716
.major = 4,
717717
.minor = 2,

0 commit comments

Comments
 (0)