Commit f0872686 authored by Bernard Zhao's avatar Bernard Zhao Committed by Alex Deucher
Browse files

drm/amd: cleanup coding style a bit



Fix patch check warning:
WARNING: suspect code indent for conditional statements (8, 17)
+       if (obj && obj->use < 0) {
+                DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);

WARNING: braces {} are not necessary for single statement blocks
+       if (obj && obj->use < 0) {
+                DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);
+       }

Signed-off-by: default avatarBernard Zhao <bernard@vivo.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ccc43430
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -447,12 +447,11 @@ static ssize_t amdgpu_ras_sysfs_read(struct device *dev,

static inline void put_obj(struct ras_manager *obj)
{
	if (obj && --obj->use == 0)
	if (obj && (--obj->use == 0))
		list_del(&obj->node);
	if (obj && obj->use < 0) {
	if (obj && (obj->use < 0))
		DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);
}
}

/* make one obj and return it. */
static struct ras_manager *amdgpu_ras_create_obj(struct amdgpu_device *adev,