]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - queue-4.4/arm-orion-don-t-use-using-64-bit-dma-masks.patch
4.4-stable patches
[thirdparty/kernel/stable-queue.git] / queue-4.4 / arm-orion-don-t-use-using-64-bit-dma-masks.patch
CommitLineData
288d6f25
SL
1From 53a0a1cfa5aef9869c2cb2f58531c11430b2e82f Mon Sep 17 00:00:00 2001
2From: Arnd Bergmann <arnd@arndb.de>
3Date: Mon, 25 Mar 2019 16:50:42 +0100
4Subject: ARM: orion: don't use using 64-bit DMA masks
5
6[ Upstream commit cd92d74d67c811dc22544430b9ac3029f5bd64c5 ]
7
8clang warns about statically defined DMA masks from the DMA_BIT_MASK
9macro with length 64:
10
11arch/arm/plat-orion/common.c:625:29: error: shift count >= width of type [-Werror,-Wshift-count-overflow]
12 .coherent_dma_mask = DMA_BIT_MASK(64),
13 ^~~~~~~~~~~~~~~~
14include/linux/dma-mapping.h:141:54: note: expanded from macro 'DMA_BIT_MASK'
15 #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
16
17The ones in orion shouldn't really be 64 bit masks, so changing them
18to what the driver can support avoids the warning.
19
20Signed-off-by: Arnd Bergmann <arnd@arndb.de>
21Signed-off-by: Olof Johansson <olof@lixom.net>
22Signed-off-by: Sasha Levin <sashal@kernel.org>
23---
24 arch/arm/plat-orion/common.c | 4 ++--
25 1 file changed, 2 insertions(+), 2 deletions(-)
26
27diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c
28index 8861c367d061..51c3737ddba7 100644
29--- a/arch/arm/plat-orion/common.c
30+++ b/arch/arm/plat-orion/common.c
31@@ -645,7 +645,7 @@ static struct platform_device orion_xor0_shared = {
32 .resource = orion_xor0_shared_resources,
33 .dev = {
34 .dma_mask = &orion_xor_dmamask,
35- .coherent_dma_mask = DMA_BIT_MASK(64),
36+ .coherent_dma_mask = DMA_BIT_MASK(32),
37 .platform_data = &orion_xor0_pdata,
38 },
39 };
40@@ -706,7 +706,7 @@ static struct platform_device orion_xor1_shared = {
41 .resource = orion_xor1_shared_resources,
42 .dev = {
43 .dma_mask = &orion_xor_dmamask,
44- .coherent_dma_mask = DMA_BIT_MASK(64),
45+ .coherent_dma_mask = DMA_BIT_MASK(32),
46 .platform_data = &orion_xor1_pdata,
47 },
48 };
49--
502.20.1
51