projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e30681b
)
media: imx-csi: fix burst size for 16 bit
author
Jan Luebbe
<
[email protected]
>
Thu, 3 May 2018 16:32:00 +0000
(12:32 -0400)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Wed, 9 May 2018 20:32:56 +0000
(16:32 -0400)
A burst_size of 4 does not work for the 16 bit passthrough formats, so
we use 8 instead.
Signed-off-by: Jan Luebbe <
[email protected]
>
Acked-by: Philipp Zabel <
[email protected]
>
Acked-by: Steve Longerbeam <
[email protected]
>
Signed-off-by: Hans Verkuil <
[email protected]
>
Signed-off-by: Mauro Carvalho Chehab <
[email protected]
>
drivers/staging/media/imx/imx-media-csi.c
patch
|
blob
|
history
diff --git
a/drivers/staging/media/imx/imx-media-csi.c
b/drivers/staging/media/imx/imx-media-csi.c
index 1112d8f67a180a4a12b7afa24cf18d7bfb3c3c29..08b6360842866884db2896edb4a1df1200658469 100644
(file)
--- a/
drivers/staging/media/imx/imx-media-csi.c
+++ b/
drivers/staging/media/imx/imx-media-csi.c
@@
-410,7
+410,7
@@
static int csi_idmac_setup_channel(struct csi_priv *priv)
case V4L2_PIX_FMT_SGRBG16:
case V4L2_PIX_FMT_SRGGB16:
case V4L2_PIX_FMT_Y16:
- burst_size =
4
;
+ burst_size =
8
;
passthrough = true;
passthrough_bits = 16;
break;