From: Philipp Zabel Date: Tue, 5 Aug 2014 17:00:06 +0000 (-0300) Subject: [media] coda: include header for memcpy X-Git-Tag: Ubuntu-snapdragon-4.4.0-1029.32~7919^2^2~475 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=2c3759d406ded38b88992cb4e423ce232112001a;p=mirror_ubuntu-zesty-kernel.git [media] coda: include header for memcpy coda_h264_padding uses memcpy, we should include string.h for that. Reported-by: Ian Jamison Signed-off-by: Philipp Zabel Signed-off-by: Kamil Debski Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/coda/coda-h264.c b/drivers/media/platform/coda/coda-h264.c index 0b2fdbeea7cb..456773af1f1d 100644 --- a/drivers/media/platform/coda/coda-h264.c +++ b/drivers/media/platform/coda/coda-h264.c @@ -12,6 +12,7 @@ */ #include +#include static const u8 coda_filler_nal[14] = { 0x00, 0x00, 0x00, 0x01, 0x0c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80 };