disp: msm: fix compilation errors for dlkm compilation

Fix dlkm compilation errors that are due to the use of -Werror
flags used by the build system.

Change-Id: I5e1e9bc63c1361d73e4930aab123212717872ecb
Signed-off-by: Tatenda Chipeperekwa <tatendac@codeaurora.org>
This commit is contained in:
Tatenda Chipeperekwa
2020-12-08 15:00:14 -08:00
gecommit door Abhijit Kulkarni
bovenliggende 1b3ad8486d
commit c6257272d4
31 gewijzigde bestanden met toevoegingen van 87 en 85 verwijderingen

Bestand weergeven

@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
*/
#include "msm_drv.h"
@@ -244,7 +244,7 @@ static void sde_vdc_dump_core_params(struct msm_display_vdc_info *vdc_info)
vdc_info->tot_pad_bits);
pr_debug("vdc_info->rc_stuffing_bits = %d\n",
vdc_info->rc_stuffing_bits);
pr_debug("vdc_info->slice_num_bits = %d\n",
pr_debug("vdc_info->slice_num_bits = %llu\n",
vdc_info->slice_num_bits);
pr_debug("vdc_info->chunk_adj_bits = %d\n",
vdc_info->chunk_adj_bits);
@@ -280,7 +280,7 @@ static void sde_vdc_dump_core_params(struct msm_display_vdc_info *vdc_info)
vdc_info->rc_fullness_offset_thresh);
pr_debug("vdc_info->ramp_blocks = %d\n",
vdc_info->ramp_blocks);
pr_debug("vdc_info->ramp_bits = %d\n",
pr_debug("vdc_info->ramp_bits = %llu\n",
vdc_info->ramp_bits);
pr_debug("vdc_info->rc_fullness_offset_slope = %d\n",
vdc_info->rc_fullness_offset_slope);