diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2014-08-05 19:00:06 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-08-21 22:25:23 +0200 |
commit | 2c3759d406ded38b88992cb4e423ce232112001a (patch) | |
tree | b70cfa2510131e405e1cd6d0a69c64fca5915b82 | |
parent | [media] coda: move BIT specific functions into separate file (diff) | |
download | linux-2c3759d406ded38b88992cb4e423ce232112001a.tar.xz linux-2c3759d406ded38b88992cb4e423ce232112001a.zip |
[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>
-rw-r--r-- | drivers/media/platform/coda/coda-h264.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <linux/kernel.h> +#include <linux/string.h> static const u8 coda_filler_nal[14] = { 0x00, 0x00, 0x00, 0x01, 0x0c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80 }; |