12b57afacd6d5603e1c40e1d16f079e36104906b
[openwrt/staging/yousong.git] / target / linux / brcm2708 / patches-3.10 / 0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch
1 From c07faead7a537b84fda682c8f62eea977814af31 Mon Sep 17 00:00:00 2001
2 From: Dave Stevenson <dsteve@broadcom.com>
3 Date: Wed, 12 Feb 2014 11:39:20 +0000
4 Subject: [PATCH 170/174] V4L2: Correct BGR24 to RGB24 in format table
5
6 Signed-off-by: Dave Stevenson <dsteve@broadcom.com>
7 ---
8 drivers/media/platform/bcm2835/bcm2835-camera.c | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
10
11 --- a/drivers/media/platform/bcm2835/bcm2835-camera.c
12 +++ b/drivers/media/platform/bcm2835/bcm2835-camera.c
13 @@ -84,8 +84,8 @@ static struct mmal_fmt formats[] = {
14 .mmal_component = MMAL_COMPONENT_CAMERA,
15 },
16 {
17 - .name = "RGB24 (BE)",
18 - .fourcc = V4L2_PIX_FMT_BGR24,
19 + .name = "RGB24 (LE)",
20 + .fourcc = V4L2_PIX_FMT_RGB24,
21 .flags = 0,
22 .mmal = MMAL_ENCODING_BGR24,
23 .depth = 24,