diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2011-09-06 11:02:15 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-09-21 22:18:26 -0300 |
commit | e74d83aad3709a17d68f01481f2b5f240250b1c3 (patch) | |
tree | e9c519c13615825c33d9eff92c9c48df3614671c /drivers | |
parent | 4d9b2ebd335d83044b9e6656d0e604e8e1300334 (diff) | |
download | linux-stable-e74d83aad3709a17d68f01481f2b5f240250b1c3.tar.gz linux-stable-e74d83aad3709a17d68f01481f2b5f240250b1c3.tar.bz2 linux-stable-e74d83aad3709a17d68f01481f2b5f240250b1c3.zip |
[media] omap3isp: Fix build error in ispccdc.c
The following build error occurs with 3.1-rc5:
CC drivers/media/video/omap3isp/ispccdc.o
This patch adds the missing 'linux/slab.h' include to fix the problem.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/omap3isp/ispccdc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/omap3isp/ispccdc.c b/drivers/media/video/omap3isp/ispccdc.c index 9d3459de04b2..80796eb0c53e 100644 --- a/drivers/media/video/omap3isp/ispccdc.c +++ b/drivers/media/video/omap3isp/ispccdc.c @@ -31,6 +31,7 @@ #include <linux/dma-mapping.h> #include <linux/mm.h> #include <linux/sched.h> +#include <linux/slab.h> #include <media/v4l2-event.h> #include "isp.h" |