Skip to content

Commit 042a70e

Browse files
Ran Sunalexdeucher
authored andcommitted
drm/amdgpu: Clean up errors in vce_v3_0.c
Fix the following errors reported by checkpatch: 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 9c7f00f commit 042a70e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -998,26 +998,23 @@ static void vce_v3_0_set_irq_funcs(struct amdgpu_device *adev)
998998
adev->vce.irq.funcs = &vce_v3_0_irq_funcs;
999999
};
10001000

1001-
const struct amdgpu_ip_block_version vce_v3_0_ip_block =
1002-
{
1001+
const struct amdgpu_ip_block_version vce_v3_0_ip_block = {
10031002
.type = AMD_IP_BLOCK_TYPE_VCE,
10041003
.major = 3,
10051004
.minor = 0,
10061005
.rev = 0,
10071006
.funcs = &vce_v3_0_ip_funcs,
10081007
};
10091008

1010-
const struct amdgpu_ip_block_version vce_v3_1_ip_block =
1011-
{
1009+
const struct amdgpu_ip_block_version vce_v3_1_ip_block = {
10121010
.type = AMD_IP_BLOCK_TYPE_VCE,
10131011
.major = 3,
10141012
.minor = 1,
10151013
.rev = 0,
10161014
.funcs = &vce_v3_0_ip_funcs,
10171015
};
10181016

1019-
const struct amdgpu_ip_block_version vce_v3_4_ip_block =
1020-
{
1017+
const struct amdgpu_ip_block_version vce_v3_4_ip_block = {
10211018
.type = AMD_IP_BLOCK_TYPE_VCE,
10221019
.major = 3,
10231020
.minor = 4,

0 commit comments

Comments
 (0)