Skip to content

Commit

Permalink
drm/amdgpu: fix semicolon.cocci warnings
Browse files Browse the repository at this point in the history
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:405:2-3: Unneeded semicolon
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c:435:2-3: Unneeded semicolon

 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 1381f5b10b10 ("drm/amdgpu: add amdgpu_ras.c to support ras (v2)")
Change-Id: I0da2913660e8cf3f23ba398f4dd045e83c50d2dc
CC: xinhui pan <xinhui.pan@amd.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
kbuild test robot authored and changzhu committed Mar 15, 2019
1 parent 79017ac commit ca32d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ static int amdgpu_ras_disable_all_features(struct amdgpu_device *adev,
if (amdgpu_ras_feature_enable(adev, &obj->head, 0))
break;
}
};
}

return con->features;
}
Expand Down Expand Up @@ -619,7 +619,7 @@ static int amdgpu_ras_enable_all_features(struct amdgpu_device *adev,
if (amdgpu_ras_feature_enable(adev, &head, 1))
break;
}
};
}

return con->features;
}
Expand Down

0 comments on commit ca32d47

Please sign in to comment.