Commit aa0e9e72 authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Mauro Carvalho Chehab
Browse files

media: staging: media: hantro: Remove call to memset after dma_alloc_coherent



fix below issue reported by coccicheck
/drivers/staging/media/hantro/hantro_vp8.c:149:16-34: WARNING:
dma_alloc_coherent use in aux_buf -> cpu already zeroes out memory,  so
memset is not needed

Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Reviewed-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 24f6f93a
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -151,8 +151,6 @@ int hantro_vp8_dec_init(struct hantro_ctx *ctx)
	if (!aux_buf->cpu)
		return -ENOMEM;

	memset(aux_buf->cpu, 0, aux_buf->size);

	/*
	 * Allocate probability table buffer,
	 * total 1208 bytes, 4K page is far enough.