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>
This commit is contained in:
Dave Airlie 2017-10-03 15:10:59 +10:00 committed by Alex Deucher
parent ae3a27d19b
commit c1199962f5
1 changed files with 2 additions and 2 deletions

View File

@ -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);