diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-27 10:10:58 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-27 10:10:58 -0300 |
commit | 3a0da040ea124d6f58f05892da0f9a862b095f75 (patch) | |
tree | 934774f8a8cfc5bf05421ee13dea56a6aaf7238f /linux/drivers/media/video/vivi.c | |
parent | c9200428724317603727346a1245593378626343 (diff) | |
download | mediapointer-dvb-s2-3a0da040ea124d6f58f05892da0f9a862b095f75.tar.gz mediapointer-dvb-s2-3a0da040ea124d6f58f05892da0f9a862b095f75.tar.bz2 |
Vivi build fix
From: Andrew Morton <akpm@osdl.org>
drivers/media/video/vivi.c: In function `vivi_map_sg':
drivers/media/video/vivi.c:799: error: `DMA_NONE' undeclared (first use in this function)
drivers/media/video/vivi.c:799: error: (Each undeclared identifier is reported only once
drivers/media/video/vivi.c:799: error: for each function it appears in.)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/vivi.c')
-rw-r--r-- | linux/drivers/media/video/vivi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/vivi.c b/linux/drivers/media/video/vivi.c index 843fdecbc..a60f14c14 100644 --- a/linux/drivers/media/video/vivi.c +++ b/linux/drivers/media/video/vivi.c @@ -26,6 +26,7 @@ #include <linux/random.h> #include <linux/version.h> #include <linux/videodev2.h> +#include <linux/dma-mapping.h> #ifdef CONFIG_VIDEO_V4L1_COMPAT /* Include V4L1 specific functions. Should be removed soon */ #include <linux/videodev.h> |