From: Dave Airlie Date: Tue, 3 Oct 2017 05:10:59 +0000 (+1000) Subject: amdgpu/dc: fix indentation on a couple of returns. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c1199962f58528d6530db055b576cfaf5340b427;p=openwrt%2Fstaging%2Fblogic.git amdgpu/dc: fix indentation on a couple of returns. These were misaligned. found by the cocci ifcol script. Signed-off-by: Dave Airlie Reviewed-by: Harry Wentland Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c index 3d65e2ab9bf1..cb94e18cc455 100644 --- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c +++ b/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)); if (info_v11 == NULL) - return BP_RESULT_BADBIOSTABLE; + return BP_RESULT_BADBIOSTABLE; info->gpu_cap_info = 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) - return info; + return info; kfree(info);