drm/amdgpu: Fix the code style warnings in sdma
authoryipechai <YiPeng.Chai@amd.com>
Fri, 14 Jan 2022 02:33:09 +0000 (10:33 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 18 Jan 2022 22:24:18 +0000 (17:24 -0500)
Fix the code style warnings in sdma:
1. WARNING: Missing a blank line after declarations.
2. ERROR: that open brace { should be on the previous line.
3. WARNING: unnecessary whitespace before a quoted newline.
4. ERROR: space required after that ',' (ctx:VxV).

Signed-off-by: yipechai <YiPeng.Chai@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
drivers/gpu/drm/amd/amdgpu/sdma_v4_4.c

index 3c1483d..06a7ced 100644 (file)
@@ -2766,10 +2766,10 @@ static int sdma_v4_0_query_ras_error_count_by_instance(struct amdgpu_device *ade
 static void sdma_v4_0_query_ras_error_count(struct amdgpu_device *adev,  void *ras_error_status)
 {
        int i = 0;
+
        for (i = 0; i < adev->sdma.num_instances; i++) {
-               if (sdma_v4_0_query_ras_error_count_by_instance(adev, i, ras_error_status))
-               {
-                       dev_err(adev->dev, "Query ras error count failed in SDMA%d \n", i);
+               if (sdma_v4_0_query_ras_error_count_by_instance(adev, i, ras_error_status)) {
+                       dev_err(adev->dev, "Query ras error count failed in SDMA%d\n", i);
                        return;
                }
        }
@@ -2814,7 +2814,7 @@ static void sdma_v4_0_set_ras_funcs(struct amdgpu_device *adev)
        if (adev->sdma.ras) {
                amdgpu_ras_register_ras_block(adev, &adev->sdma.ras->ras_block);
 
-               strcpy(adev->sdma.ras->ras_block.name,"sdma");
+               strcpy(adev->sdma.ras->ras_block.name, "sdma");
                adev->sdma.ras->ras_block.block = AMDGPU_RAS_BLOCK__SDMA;
 
                /* If don't define special ras_late_init function, use default ras_late_init */
index 5c1ba11..6f9895c 100644 (file)
@@ -248,10 +248,10 @@ static void sdma_v4_4_reset_ras_error_count(struct amdgpu_device *adev)
 static void sdma_v4_4_query_ras_error_count(struct amdgpu_device *adev,  void *ras_error_status)
 {
        int i = 0;
+
        for (i = 0; i < adev->sdma.num_instances; i++) {
-               if (sdma_v4_4_query_ras_error_count_by_instance(adev, i, ras_error_status))
-               {
-                       dev_err(adev->dev, "Query ras error count failed in SDMA%d \n", i);
+               if (sdma_v4_4_query_ras_error_count_by_instance(adev, i, ras_error_status)) {
+                       dev_err(adev->dev, "Query ras error count failed in SDMA%d\n", i);
                        return;
                }
        }