diff options
author | Florian Fainelli <florian@openwrt.org> | 2014-02-28 20:30:08 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2014-02-28 20:30:08 +0000 |
commit | bb39b8d99aae1f7eb13a97bd874838da91080de6 (patch) | |
tree | 3046f53937c0bc5dc13e2b2ab7b688a1932199bf /target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch | |
parent | c6c0d09f85c211560a1405441925681cfa25e8b1 (diff) | |
download | mtk-20170518-bb39b8d99aae1f7eb13a97bd874838da91080de6.zip mtk-20170518-bb39b8d99aae1f7eb13a97bd874838da91080de6.tar.gz mtk-20170518-bb39b8d99aae1f7eb13a97bd874838da91080de6.tar.bz2 |
brcm2708: update against latest rpi-3.10.y branch
Update our copies of the brcm2708 patches to the latest rpi-3.10-y
rebased against linux-3.10.y stable (3.10.32). This should hopefully
make it easier for us in the future to leverage the raspberry/rpi-*
branches.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39770
Diffstat (limited to 'target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch')
-rw-r--r-- | target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch b/target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch new file mode 100644 index 0000000..12b57af --- /dev/null +++ b/target/linux/brcm2708/patches-3.10/0170-V4L2-Correct-BGR24-to-RGB24-in-format-table.patch @@ -0,0 +1,23 @@ +From c07faead7a537b84fda682c8f62eea977814af31 Mon Sep 17 00:00:00 2001 +From: Dave Stevenson <dsteve@broadcom.com> +Date: Wed, 12 Feb 2014 11:39:20 +0000 +Subject: [PATCH 170/174] V4L2: Correct BGR24 to RGB24 in format table + +Signed-off-by: Dave Stevenson <dsteve@broadcom.com> +--- + drivers/media/platform/bcm2835/bcm2835-camera.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- a/drivers/media/platform/bcm2835/bcm2835-camera.c ++++ b/drivers/media/platform/bcm2835/bcm2835-camera.c +@@ -84,8 +84,8 @@ static struct mmal_fmt formats[] = { + .mmal_component = MMAL_COMPONENT_CAMERA, + }, + { +- .name = "RGB24 (BE)", +- .fourcc = V4L2_PIX_FMT_BGR24, ++ .name = "RGB24 (LE)", ++ .fourcc = V4L2_PIX_FMT_RGB24, + .flags = 0, + .mmal = MMAL_ENCODING_BGR24, + .depth = 24, |