media: imx: use well defined 32-bit RGB pixel format
authorPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 18 Sep 2018 09:42:31 +0000 (05:42 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Thu, 4 Oct 2018 18:27:47 +0000 (14:27 -0400)
The documentation in Documentation/media/uapi/v4l/pixfmt-packed-rgb.rst
tells us that the V4L2_PIX_FMT_RGB32 format is deprecated and must not
be used by new drivers. Replace it with V4L2_PIX_FMT_XRGB32.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Steve Longerbeam <steve_longerbeam@mentor.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/staging/media/imx/imx-media-utils.c

index 8aa1340..0eaa353 100644 (file)
@@ -88,7 +88,7 @@ static const struct imx_media_pixfmt rgb_formats[] = {
                .cs     = IPUV3_COLORSPACE_RGB,
                .bpp    = 24,
        }, {
-               .fourcc = V4L2_PIX_FMT_RGB32,
+               .fourcc = V4L2_PIX_FMT_XRGB32,
                .codes  = {MEDIA_BUS_FMT_ARGB8888_1X32},
                .cs     = IPUV3_COLORSPACE_RGB,
                .bpp    = 32,
@@ -212,7 +212,7 @@ static const struct imx_media_pixfmt ipu_yuv_formats[] = {
 
 static const struct imx_media_pixfmt ipu_rgb_formats[] = {
        {
-               .fourcc = V4L2_PIX_FMT_RGB32,
+               .fourcc = V4L2_PIX_FMT_XRGB32,
                .codes  = {MEDIA_BUS_FMT_ARGB8888_1X32},
                .cs     = IPUV3_COLORSPACE_RGB,
                .bpp    = 32,