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: Bernard Zhao <bernard@vivo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Bernard Zhao 2021-03-31 06:12:03 -07:00 committed by Alex Deucher
parent ccc4343041
commit f08726868c
1 changed files with 3 additions and 4 deletions

View File

@ -447,11 +447,10 @@ static ssize_t amdgpu_ras_sysfs_read(struct device *dev,
static inline void put_obj(struct ras_manager *obj) static inline void put_obj(struct ras_manager *obj)
{ {
if (obj && --obj->use == 0) if (obj && (--obj->use == 0))
list_del(&obj->node); 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); DRM_ERROR("RAS ERROR: Unbalance obj(%s) use\n", obj->head.name);
}
} }
/* make one obj and return it. */ /* make one obj and return it. */