diff options
| author | Dave Airlie <airlied@redhat.com> | 2017-10-03 01:10:59 -0400 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2017-10-06 13:07:06 -0400 |
| commit | c1199962f58528d6530db055b576cfaf5340b427 (patch) | |
| tree | 545bdd1eb1c27edf4f21947b0f65dea3b03e9be3 | |
| parent | ae3a27d19b59e431aea9f9d5917c1aec710ae4c3 (diff) | |
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>
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c | 4 |
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( | |||
| 1472 | DATA_TABLES(integratedsysteminfo)); | 1472 | DATA_TABLES(integratedsysteminfo)); |
| 1473 | 1473 | ||
| 1474 | if (info_v11 == NULL) | 1474 | if (info_v11 == NULL) |
| 1475 | return BP_RESULT_BADBIOSTABLE; | 1475 | return BP_RESULT_BADBIOSTABLE; |
| 1476 | 1476 | ||
| 1477 | info->gpu_cap_info = | 1477 | info->gpu_cap_info = |
| 1478 | le32_to_cpu(info_v11->gpucapinfo); | 1478 | le32_to_cpu(info_v11->gpucapinfo); |
| @@ -1753,7 +1753,7 @@ static struct integrated_info *bios_parser_create_integrated_info( | |||
| 1753 | } | 1753 | } |
| 1754 | 1754 | ||
| 1755 | if (construct_integrated_info(bp, info) == BP_RESULT_OK) | 1755 | if (construct_integrated_info(bp, info) == BP_RESULT_OK) |
| 1756 | return info; | 1756 | return info; |
| 1757 | 1757 | ||
| 1758 | kfree(info); | 1758 | kfree(info); |
| 1759 | 1759 | ||
