media: staging: media: zoran: Rename 'VidWinWid' to 'vid_win_wid'

Rename variable 'VidWinWid' to 'vid_win_wid' to eliminate camelcase.
Reported by checkpatch.pl.

Signed-off-by: Zhansaya Bagdauletkyzy <zhansayabagdaulet@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Zhansaya Bagdauletkyzy 2021-04-03 20:09:02 +02:00 committed by Mauro Carvalho Chehab
parent 076557a6e2
commit aee0b05b76

View File

@ -293,7 +293,7 @@ static void zr36057_set_vfe(struct zoran *zr, int video_width, int video_height,
const struct tvnorm *tvn; const struct tvnorm *tvn;
unsigned int h_start, h_end, v_start, v_end; unsigned int h_start, h_end, v_start, v_end;
unsigned int disp_mode; unsigned int disp_mode;
unsigned int VidWinWid, VidWinHt; unsigned int vid_win_wid, VidWinHt;
unsigned int hcrop1, hcrop2, vcrop1, vcrop2; unsigned int hcrop1, hcrop2, vcrop1, vcrop2;
unsigned int wa, We, ha, He; unsigned int wa, We, ha, He;
unsigned int X, Y, hor_dcm, ver_dcm; unsigned int X, Y, hor_dcm, ver_dcm;
@ -316,9 +316,9 @@ static void zr36057_set_vfe(struct zoran *zr, int video_width, int video_height,
/**** zr36057 ****/ /**** zr36057 ****/
/* horizontal */ /* horizontal */
VidWinWid = video_width; vid_win_wid = video_width;
X = DIV_ROUND_UP(VidWinWid * 64, tvn->wa); X = DIV_ROUND_UP(vid_win_wid * 64, tvn->wa);
We = (VidWinWid * 64) / X; We = (vid_win_wid * 64) / X;
hor_dcm = 64 - X; hor_dcm = 64 - X;
hcrop1 = 2 * ((tvn->wa - We) / 4); hcrop1 = 2 * ((tvn->wa - We) / 4);
hcrop2 = tvn->wa - We - hcrop1; hcrop2 = tvn->wa - We - hcrop1;
@ -384,7 +384,7 @@ static void zr36057_set_vfe(struct zoran *zr, int video_width, int video_height,
/* display configuration */ /* display configuration */
reg = (16 << ZR36057_VDCR_MIN_PIX) reg = (16 << ZR36057_VDCR_MIN_PIX)
| (VidWinHt << ZR36057_VDCR_VID_WIN_HT) | (VidWinHt << ZR36057_VDCR_VID_WIN_HT)
| (VidWinWid << ZR36057_VDCR_VID_WIN_WID); | (vid_win_wid << ZR36057_VDCR_VID_WIN_WID);
if (pci_pci_problems & PCIPCI_TRITON) if (pci_pci_problems & PCIPCI_TRITON)
// || zr->revision < 1) // Revision 1 has also Triton support // || zr->revision < 1) // Revision 1 has also Triton support
reg &= ~ZR36057_VDCR_TRITON; reg &= ~ZR36057_VDCR_TRITON;