Commit 849325e3 authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab

[media] media: davinci: vpbe: fix checkpatch warning for CamelCase

This patch fixes checkpatch warning to avoid CamelCase.
Signed-off-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 7c1dfdb0
...@@ -929,7 +929,7 @@ static int vpbe_display_s_fmt(struct file *file, void *priv, ...@@ -929,7 +929,7 @@ static int vpbe_display_s_fmt(struct file *file, void *priv,
cfg->interlaced = vpbe_dev->current_timings.interlaced; cfg->interlaced = vpbe_dev->current_timings.interlaced;
if (V4L2_PIX_FMT_UYVY == pixfmt->pixelformat) if (V4L2_PIX_FMT_UYVY == pixfmt->pixelformat)
cfg->pixfmt = PIXFMT_YCbCrI; cfg->pixfmt = PIXFMT_YCBCRI;
/* Change of the default pixel format for both video windows */ /* Change of the default pixel format for both video windows */
if (V4L2_PIX_FMT_NV12 == pixfmt->pixelformat) { if (V4L2_PIX_FMT_NV12 == pixfmt->pixelformat) {
......
...@@ -119,7 +119,7 @@ static inline u32 osd_modify(struct osd_state *sd, u32 mask, u32 val, ...@@ -119,7 +119,7 @@ static inline u32 osd_modify(struct osd_state *sd, u32 mask, u32 val,
#define is_rgb_pixfmt(pixfmt) \ #define is_rgb_pixfmt(pixfmt) \
(((pixfmt) == PIXFMT_RGB565) || ((pixfmt) == PIXFMT_RGB888)) (((pixfmt) == PIXFMT_RGB565) || ((pixfmt) == PIXFMT_RGB888))
#define is_yc_pixfmt(pixfmt) \ #define is_yc_pixfmt(pixfmt) \
(((pixfmt) == PIXFMT_YCbCrI) || ((pixfmt) == PIXFMT_YCrCbI) || \ (((pixfmt) == PIXFMT_YCBCRI) || ((pixfmt) == PIXFMT_YCRCBI) || \
((pixfmt) == PIXFMT_NV12)) ((pixfmt) == PIXFMT_NV12))
#define MAX_WIN_SIZE OSD_VIDWIN0XP_V0X #define MAX_WIN_SIZE OSD_VIDWIN0XP_V0X
#define MAX_LINE_LENGTH (OSD_VIDWIN0OFST_V0LO << 5) #define MAX_LINE_LENGTH (OSD_VIDWIN0OFST_V0LO << 5)
...@@ -360,8 +360,8 @@ static void _osd_enable_color_key(struct osd_state *sd, ...@@ -360,8 +360,8 @@ static void _osd_enable_color_key(struct osd_state *sd,
osd_write(sd, colorkey & OSD_TRANSPVALL_RGBL, osd_write(sd, colorkey & OSD_TRANSPVALL_RGBL,
OSD_TRANSPVALL); OSD_TRANSPVALL);
break; break;
case PIXFMT_YCbCrI: case PIXFMT_YCBCRI:
case PIXFMT_YCrCbI: case PIXFMT_YCRCBI:
if (sd->vpbe_type == VPBE_VERSION_3) if (sd->vpbe_type == VPBE_VERSION_3)
osd_modify(sd, OSD_TRANSPVALU_Y, colorkey, osd_modify(sd, OSD_TRANSPVALU_Y, colorkey,
OSD_TRANSPVALU); OSD_TRANSPVALU);
...@@ -813,8 +813,8 @@ static int try_layer_config(struct osd_state *sd, enum osd_layer layer, ...@@ -813,8 +813,8 @@ static int try_layer_config(struct osd_state *sd, enum osd_layer layer,
if (osd->vpbe_type == VPBE_VERSION_1) if (osd->vpbe_type == VPBE_VERSION_1)
bad_config = !is_vid_win(layer); bad_config = !is_vid_win(layer);
break; break;
case PIXFMT_YCbCrI: case PIXFMT_YCBCRI:
case PIXFMT_YCrCbI: case PIXFMT_YCRCBI:
bad_config = !is_vid_win(layer); bad_config = !is_vid_win(layer);
break; break;
case PIXFMT_RGB888: case PIXFMT_RGB888:
...@@ -950,9 +950,9 @@ static void _osd_set_cbcr_order(struct osd_state *sd, ...@@ -950,9 +950,9 @@ static void _osd_set_cbcr_order(struct osd_state *sd,
* The caller must ensure that all windows using YC pixfmt use the same * The caller must ensure that all windows using YC pixfmt use the same
* Cb/Cr order. * Cb/Cr order.
*/ */
if (pixfmt == PIXFMT_YCbCrI) if (pixfmt == PIXFMT_YCBCRI)
osd_clear(sd, OSD_MODE_CS, OSD_MODE); osd_clear(sd, OSD_MODE_CS, OSD_MODE);
else if (pixfmt == PIXFMT_YCrCbI) else if (pixfmt == PIXFMT_YCRCBI)
osd_set(sd, OSD_MODE_CS, OSD_MODE); osd_set(sd, OSD_MODE_CS, OSD_MODE);
} }
...@@ -981,8 +981,8 @@ static void _osd_set_layer_config(struct osd_state *sd, enum osd_layer layer, ...@@ -981,8 +981,8 @@ static void _osd_set_layer_config(struct osd_state *sd, enum osd_layer layer,
winmd |= (2 << OSD_OSDWIN0MD_BMP0MD_SHIFT); winmd |= (2 << OSD_OSDWIN0MD_BMP0MD_SHIFT);
_osd_enable_rgb888_pixblend(sd, OSDWIN_OSD0); _osd_enable_rgb888_pixblend(sd, OSDWIN_OSD0);
break; break;
case PIXFMT_YCbCrI: case PIXFMT_YCBCRI:
case PIXFMT_YCrCbI: case PIXFMT_YCRCBI:
winmd |= (3 << OSD_OSDWIN0MD_BMP0MD_SHIFT); winmd |= (3 << OSD_OSDWIN0MD_BMP0MD_SHIFT);
break; break;
default: default:
...@@ -1128,8 +1128,8 @@ static void _osd_set_layer_config(struct osd_state *sd, enum osd_layer layer, ...@@ -1128,8 +1128,8 @@ static void _osd_set_layer_config(struct osd_state *sd, enum osd_layer layer,
_osd_enable_rgb888_pixblend(sd, _osd_enable_rgb888_pixblend(sd,
OSDWIN_OSD1); OSDWIN_OSD1);
break; break;
case PIXFMT_YCbCrI: case PIXFMT_YCBCRI:
case PIXFMT_YCrCbI: case PIXFMT_YCRCBI:
winmd |= winmd |=
(3 << OSD_OSDWIN1MD_BMP1MD_SHIFT); (3 << OSD_OSDWIN1MD_BMP1MD_SHIFT);
break; break;
...@@ -1508,7 +1508,7 @@ static int osd_initialize(struct osd_state *osd) ...@@ -1508,7 +1508,7 @@ static int osd_initialize(struct osd_state *osd)
_osd_init(osd); _osd_init(osd);
/* set default Cb/Cr order */ /* set default Cb/Cr order */
osd->yc_pixfmt = PIXFMT_YCbCrI; osd->yc_pixfmt = PIXFMT_YCBCRI;
if (osd->vpbe_type == VPBE_VERSION_3) { if (osd->vpbe_type == VPBE_VERSION_3) {
/* /*
......
...@@ -82,9 +82,9 @@ enum osd_pix_format { ...@@ -82,9 +82,9 @@ enum osd_pix_format {
PIXFMT_4BPP, PIXFMT_4BPP,
PIXFMT_8BPP, PIXFMT_8BPP,
PIXFMT_RGB565, PIXFMT_RGB565,
PIXFMT_YCbCrI, PIXFMT_YCBCRI,
PIXFMT_RGB888, PIXFMT_RGB888,
PIXFMT_YCrCbI, PIXFMT_YCRCBI,
PIXFMT_NV12, PIXFMT_NV12,
PIXFMT_OSD_ATTR, PIXFMT_OSD_ATTR,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment