amdgpu/dc: fix indentation on a couple of returns.
authorDave Airlie <airlied@redhat.com>
Tue, 3 Oct 2017 05:10:59 +0000 (15:10 +1000)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 6 Oct 2017 17:07:06 +0000 (13:07 -0400)
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>
drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c

index 3d65e2ab9bf12b2de5f8cc3c31cd49c0525b5817..cb94e18cc4550857795c6c1d8969c012ab27882a 100644 (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);