mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
[media] omap3isp: preview: Rename prev_params fields to match userspace API
Rename the blk_adj and rgb2ycbcr fields to blkadj and csc respectively. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
7ed5de9751
commit
9b00184d1c
@ -837,9 +837,9 @@ __preview_get_ptrs(struct prev_params *params, void **param,
|
||||
CHKARG(configs, config, dcor)
|
||||
return sizeof(params->dcor);
|
||||
case OMAP3ISP_PREV_BLKADJ:
|
||||
*param = ¶ms->blk_adj;
|
||||
*param = ¶ms->blkadj;
|
||||
CHKARG(configs, config, blkadj)
|
||||
return sizeof(params->blk_adj);
|
||||
return sizeof(params->blkadj);
|
||||
case OMAP3ISP_PREV_YC_LIMIT:
|
||||
*param = ¶ms->yclimit;
|
||||
CHKARG(configs, config, yclimit)
|
||||
@ -849,9 +849,9 @@ __preview_get_ptrs(struct prev_params *params, void **param,
|
||||
CHKARG(configs, config, rgb2rgb)
|
||||
return sizeof(params->rgb2rgb);
|
||||
case OMAP3ISP_PREV_COLOR_CONV:
|
||||
*param = ¶ms->rgb2ycbcr;
|
||||
*param = ¶ms->csc;
|
||||
CHKARG(configs, config, csc)
|
||||
return sizeof(params->rgb2ycbcr);
|
||||
return sizeof(params->csc);
|
||||
case OMAP3ISP_PREV_WB:
|
||||
*param = ¶ms->wbal;
|
||||
CHKARG(configs, config, wbal)
|
||||
@ -1285,11 +1285,11 @@ static void preview_init_params(struct isp_prev_device *prev)
|
||||
params->wbal.coef1 = FLR_WBAL_COEF;
|
||||
params->wbal.coef2 = FLR_WBAL_COEF;
|
||||
params->wbal.coef3 = FLR_WBAL_COEF;
|
||||
params->blk_adj.red = FLR_BLKADJ_RED;
|
||||
params->blk_adj.green = FLR_BLKADJ_GREEN;
|
||||
params->blk_adj.blue = FLR_BLKADJ_BLUE;
|
||||
params->blkadj.red = FLR_BLKADJ_RED;
|
||||
params->blkadj.green = FLR_BLKADJ_GREEN;
|
||||
params->blkadj.blue = FLR_BLKADJ_BLUE;
|
||||
params->rgb2rgb = flr_rgb2rgb;
|
||||
params->rgb2ycbcr = flr_prev_csc;
|
||||
params->csc = flr_prev_csc;
|
||||
params->yclimit.minC = ISPPRV_YC_MIN;
|
||||
params->yclimit.maxC = ISPPRV_YC_MAX;
|
||||
params->yclimit.minY = ISPPRV_YC_MIN;
|
||||
|
@ -77,9 +77,9 @@ enum preview_ycpos_mode {
|
||||
* @dcor: Noise filter coefficients.
|
||||
* @gamma: Gamma coefficients.
|
||||
* @wbal: White Balance parameters.
|
||||
* @blk_adj: Black adjustment parameters.
|
||||
* @blkadj: Black adjustment parameters.
|
||||
* @rgb2rgb: RGB blending parameters.
|
||||
* @rgb2ycbcr: RGB to ycbcr parameters.
|
||||
* @csc: Color space conversion (RGB to YCbCr) parameters.
|
||||
* @hmed: Horizontal median filter.
|
||||
* @yclimit: YC limits parameters.
|
||||
* @contrast: Contrast.
|
||||
@ -94,9 +94,9 @@ struct prev_params {
|
||||
struct omap3isp_prev_dcor dcor;
|
||||
struct omap3isp_prev_gtables gamma;
|
||||
struct omap3isp_prev_wbal wbal;
|
||||
struct omap3isp_prev_blkadj blk_adj;
|
||||
struct omap3isp_prev_blkadj blkadj;
|
||||
struct omap3isp_prev_rgbtorgb rgb2rgb;
|
||||
struct omap3isp_prev_csc rgb2ycbcr;
|
||||
struct omap3isp_prev_csc csc;
|
||||
struct omap3isp_prev_hmed hmed;
|
||||
struct omap3isp_prev_yclimit yclimit;
|
||||
u8 contrast;
|
||||
|
Loading…
Reference in New Issue
Block a user