summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommaso Merciai <tommaso.merciai.xr@bp.renesas.com>2026-08-19 12:28:08 +0200
committerSakari Ailus <sakari.ailus@linux.intel.com>2026-09-02 11:03:39 +0300
commit4bcf5025452002ca0ac45dc6cbe8ec29ec0b66cc (patch)
treec30578f1280868346c7aceff6eb6ea1b353c1619
parentef3081d495ff9a05ce146fe9288d01fc5c0baad3 (diff)
downloadlinux-next-4bcf5025452002ca0ac45dc6cbe8ec29ec0b66cc.tar.gz
linux-next-4bcf5025452002ca0ac45dc6cbe8ec29ec0b66cc.zip
media: rzg2l-cru: Use v4l2_fill_pixfmt_aligned() for stride alignment
Replace the open-coded bytesperline/sizeimage rounding with the newly added v4l2_fill_pixfmt_aligned(). No functional change intended. Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Signed-off-by: Tommaso Merciai <tommaso.merciai.xr@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
-rw-r--r--drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c
index 91eda5034248..27a35ef2a6df 100644
--- a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c
+++ b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c
@@ -849,12 +849,8 @@ static void rzg2l_cru_format_align(struct rzg2l_cru_dev *cru,
v4l_bound_align_image(&pix->width, 320, info->max_width, 1,
&pix->height, 240, info->max_height, 2, 0);
- v4l2_fill_pixfmt(pix, pix->pixelformat, pix->width, pix->height);
-
- if (info->has_stride) {
- pix->bytesperline = ALIGN(pix->bytesperline, RZG2L_CRU_STRIDE_ALIGN);
- pix->sizeimage = pix->bytesperline * pix->height;
- }
+ v4l2_fill_pixfmt_aligned(pix, pix->pixelformat, pix->width, pix->height,
+ info->has_stride ? RZG2L_CRU_STRIDE_ALIGN : 1);
dev_dbg(cru->dev, "Format %ux%u bpl: %u size: %u\n",
pix->width, pix->height, pix->bytesperline, pix->sizeimage);