[media] omap3isp: preview: Rename last occurences of *_rgb_to_ycbcr to *_csc
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Tue, 17 Apr 2012 16:05:12 +0000 (13:05 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 8 May 2012 17:09:31 +0000 (14:09 -0300)
For consistency reasons, rename the last remaining occurences of
rgb_to_ycbcr to csc (color space conversion).

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/omap3isp/isppreview.c

index 5bdf9e742c8e91ba5999c613e17fd431e599a035..f839cf866fa95198819bab45620f106d25f61133 100644 (file)
@@ -608,12 +608,12 @@ preview_config_rgb_blending(struct isp_prev_device *prev, const void *rgb2rgb)
 }
 
 /*
- * Configures the RGB-YCbYCr conversion matrix
+ * Configures the color space conversion (RGB toYCbYCr) matrix
  * @prev_csc: Structure containing the RGB to YCbYCr matrix and the
  *            YCbCr offset.
  */
 static void
-preview_config_rgb_to_ycbcr(struct isp_prev_device *prev, const void *prev_csc)
+preview_config_csc(struct isp_prev_device *prev, const void *prev_csc)
 {
        struct isp_device *isp = to_isp_device(prev);
        const struct omap3isp_prev_csc *csc = prev_csc;
@@ -860,7 +860,7 @@ static const struct preview_update update_attrs[] = {
                FIELD_SIZEOF(struct prev_params, rgb2rgb),
                offsetof(struct omap3isp_prev_update_config, rgb2rgb),
        }, /* OMAP3ISP_PREV_COLOR_CONV */ {
-               preview_config_rgb_to_ycbcr,
+               preview_config_csc,
                NULL,
                offsetof(struct prev_params, csc),
                FIELD_SIZEOF(struct prev_params, csc),
This page took 0.027503 seconds and 5 git commands to generate.