summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/bios
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2017-10-03 15:10:59 +1000
committerAlex Deucher <alexander.deucher@amd.com>2017-10-06 13:07:06 -0400
commitc1199962f58528d6530db055b576cfaf5340b427 (patch)
tree545bdd1eb1c27edf4f21947b0f65dea3b03e9be3 /drivers/gpu/drm/amd/display/dc/bios
parentae3a27d19b59e431aea9f9d5917c1aec710ae4c3 (diff)
downloadlinux-c1199962f58528d6530db055b576cfaf5340b427.tar.bz2
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>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/bios')
-rw-r--r--drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c4
1 files changed, 2 insertions, 2 deletions
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);