Commit 2b2b5858 authored by Ran Sun's avatar Ran Sun Committed by Alex Deucher

drm/amdgpu: Clean up errors in vcn_v4_0.c

Fix the following errors reported by checkpatch:

spaces required around that '==' (ctx:VxV)
ERROR: space required before the open parenthesis '('
ERROR: that open brace { should be on the previous line
Signed-off-by: default avatarRan Sun <sunran001@208suo.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c8a14396
...@@ -1139,11 +1139,11 @@ static int vcn_v4_0_start(struct amdgpu_device *adev) ...@@ -1139,11 +1139,11 @@ static int vcn_v4_0_start(struct amdgpu_device *adev)
if (status & 2) if (status & 2)
break; break;
mdelay(10); mdelay(10);
if (amdgpu_emu_mode==1) if (amdgpu_emu_mode == 1)
msleep(1); msleep(1);
} }
if (amdgpu_emu_mode==1) { if (amdgpu_emu_mode == 1) {
r = -1; r = -1;
if (status & 2) { if (status & 2) {
r = 0; r = 0;
...@@ -1959,7 +1959,7 @@ static int vcn_v4_0_set_powergating_state(void *handle, enum amd_powergating_sta ...@@ -1959,7 +1959,7 @@ static int vcn_v4_0_set_powergating_state(void *handle, enum amd_powergating_sta
return 0; return 0;
} }
if(state == adev->vcn.cur_state) if (state == adev->vcn.cur_state)
return 0; return 0;
if (state == AMD_PG_STATE_GATE) if (state == AMD_PG_STATE_GATE)
...@@ -1967,7 +1967,7 @@ static int vcn_v4_0_set_powergating_state(void *handle, enum amd_powergating_sta ...@@ -1967,7 +1967,7 @@ static int vcn_v4_0_set_powergating_state(void *handle, enum amd_powergating_sta
else else
ret = vcn_v4_0_start(adev); ret = vcn_v4_0_start(adev);
if(!ret) if (!ret)
adev->vcn.cur_state = state; adev->vcn.cur_state = state;
return ret; return ret;
...@@ -2101,8 +2101,7 @@ static const struct amd_ip_funcs vcn_v4_0_ip_funcs = { ...@@ -2101,8 +2101,7 @@ static const struct amd_ip_funcs vcn_v4_0_ip_funcs = {
.set_powergating_state = vcn_v4_0_set_powergating_state, .set_powergating_state = vcn_v4_0_set_powergating_state,
}; };
const struct amdgpu_ip_block_version vcn_v4_0_ip_block = const struct amdgpu_ip_block_version vcn_v4_0_ip_block = {
{
.type = AMD_IP_BLOCK_TYPE_VCN, .type = AMD_IP_BLOCK_TYPE_VCN,
.major = 4, .major = 4,
.minor = 0, .minor = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment