Browse Source

amdgpu/dc: fix indentation on a couple of returns.

These were misaligned.

found by the cocci ifcol script.

Signed-off-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Dave Airlie 7 years ago
parent
commit
c1199962f5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c

+ 2 - 2
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c

@@ -1472,7 +1472,7 @@ static enum bp_result get_integrated_info_v11(
 					DATA_TABLES(integratedsysteminfo));
 					DATA_TABLES(integratedsysteminfo));
 
 
 	if (info_v11 == NULL)
 	if (info_v11 == NULL)
-	return BP_RESULT_BADBIOSTABLE;
+		return BP_RESULT_BADBIOSTABLE;
 
 
 	info->gpu_cap_info =
 	info->gpu_cap_info =
 	le32_to_cpu(info_v11->gpucapinfo);
 	le32_to_cpu(info_v11->gpucapinfo);
@@ -1753,7 +1753,7 @@ static struct integrated_info *bios_parser_create_integrated_info(
 	}
 	}
 
 
 	if (construct_integrated_info(bp, info) == BP_RESULT_OK)
 	if (construct_integrated_info(bp, info) == BP_RESULT_OK)
-	return info;
+		return info;
 
 
 	kfree(info);
 	kfree(info);