* [Allwinner] Add analogue audio to H6, enable Cedrus, remove deprecated patches, adjust config * Cleanup
35 lines
1.4 KiB
Diff
35 lines
1.4 KiB
Diff
|
|
From c3b32900fbf5178473c6b39260e891e19067edc2 Mon Sep 17 00:00:00 2001
|
|
From: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
|
|
Date: Tue, 22 Oct 2019 12:26:51 -0300
|
|
Subject: [PATCH] media: cedrus: Remove unnecessary parenthesis aroundDIV_ROUND_UP
|
|
|
|
DIV_ROUND_UP's first argument doesn't need to be wrapped in parenthesis
|
|
since that is already being taken care of in the macro's definition.
|
|
|
|
Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
|
|
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
|
|
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
|
|
---
|
|
drivers/staging/media/sunxi/cedrus/cedrus_regs.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/staging/media/sunxi/cedrus/cedrus_regs.h b/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
index f9dd8cbf3458..21676a1797f1 100644
|
|
--- a/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
+++ b/drivers/staging/media/sunxi/cedrus/cedrus_regs.h
|
|
@@ -101,9 +101,9 @@
|
|
#define VE_DEC_MPEG_PICCODEDSIZE (VE_ENGINE_DEC_MPEG + 0x08)
|
|
|
|
#define VE_DEC_MPEG_PICCODEDSIZE_WIDTH(w) \
|
|
- SHIFT_AND_MASK_BITS(DIV_ROUND_UP((w), 16), 15, 8)
|
|
+ SHIFT_AND_MASK_BITS(DIV_ROUND_UP(w, 16), 15, 8)
|
|
#define VE_DEC_MPEG_PICCODEDSIZE_HEIGHT(h) \
|
|
- SHIFT_AND_MASK_BITS(DIV_ROUND_UP((h), 16), 7, 0)
|
|
+ SHIFT_AND_MASK_BITS(DIV_ROUND_UP(h, 16), 7, 0)
|
|
|
|
#define VE_DEC_MPEG_PICBOUNDSIZE (VE_ENGINE_DEC_MPEG + 0x0c)
|
|
|
|
--
|
|
2.23.0
|