Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d5a71ef authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab
Browse files

[media] omap3isp: Remove unneeded memset after kzalloc



kzalloc initializes the memory it allocates to 0, there's no need for an
explicit memset.

Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: default avatarSakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 3fdfedaa
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -306,7 +306,6 @@ int omap3isp_h3a_aewb_init(struct isp_device *isp)
	if (!aewb_cfg)
		return -ENOMEM;

	memset(aewb, 0, sizeof(*aewb));
	aewb->ops = &h3a_aewb_ops;
	aewb->priv = aewb_cfg;
	aewb->dma_ch = -1;
+0 −1
Original line number Diff line number Diff line
@@ -369,7 +369,6 @@ int omap3isp_h3a_af_init(struct isp_device *isp)
	if (af_cfg == NULL)
		return -ENOMEM;

	memset(af, 0, sizeof(*af));
	af->ops = &h3a_af_ops;
	af->priv = af_cfg;
	af->dma_ch = -1;
+0 −1
Original line number Diff line number Diff line
@@ -481,7 +481,6 @@ int omap3isp_hist_init(struct isp_device *isp)
	if (hist_cfg == NULL)
		return -ENOMEM;

	memset(hist, 0, sizeof(*hist));
	hist->isp = isp;

	if (HIST_CONFIG_DMA)