Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] coda: include header for memcpy

coda_h264_padding uses memcpy, we should include string.h for that.

Reported-by: Ian Jamison <ian.dev@arkver.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>

authored by

Philipp Zabel and committed by
Mauro Carvalho Chehab
2c3759d4 79924ca9

+1
+1
drivers/media/platform/coda/coda-h264.c
··· 12 12 */ 13 13 14 14 #include <linux/kernel.h> 15 + #include <linux/string.h> 15 16 16 17 static const u8 coda_filler_nal[14] = { 0x00, 0x00, 0x00, 0x01, 0x0c, 0xff, 17 18 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80 };