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
committato da Abhijit Kulkarni
parent 1b3ad8486d
commit c6257272d4
31 ha cambiato i file con 87 aggiunte e 85 eliminazioni

Vedi File

@@ -24,8 +24,8 @@
})
#define dp_pll_write(x, offset, data) ({ \
DP_DEBUG(#offset", addr=0x%x, val=0x%x\n", \
(dp_pll_get_base(x)) + (offset), (data)); \
DP_DEBUG(#offset", addr=0x%llx, val=0x%x\n", \
((u64)(dp_pll_get_base(x)) + (offset)), (data)); \
SDE_EVT32_VERBOSE((dp_pll_get_base(x)) + (offset), (data)); \
writel_relaxed((data), (dp_pll_get_base(x)) + (offset)); \
})