diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-06 22:51:14 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-06 22:51:14 -0200 |
commit | 6344857b3efe147943968b446b545e21cf3e7e87 (patch) | |
tree | cf15dca335cb32517e2610b34d21e89aa7a9fd84 /linux/drivers/media | |
parent | aaa0e2fbc9f0083923be1e72016aee926e30a1fb (diff) | |
download | mediapointer-dvb-s2-6344857b3efe147943968b446b545e21cf3e7e87.tar.gz mediapointer-dvb-s2-6344857b3efe147943968b446b545e21cf3e7e87.tar.bz2 |
VIDEO_BUF depends on PCI
From: Andrew Morton <akpm@osdl.org>
m68k allmodconfig:
drivers/media/video/video-buf.c: In function 'videobuf_queue_pci':
drivers/media/video/video-buf.c:396: error: 'pci_map_sg' undeclared (first use in this function)
drivers/media/video/video-buf.c:396: error: (Each undeclared identifier is reported only once
drivers/media/video/video-buf.c:396: error: for each function it appears in.)
drivers/media/video/video-buf.c:399: error: 'pci_dma_sync_sg_for_cpu' undeclared (first use in this function)
drivers/media/video/video-buf.c:401: error: 'pci_unmap_sg' undeclared (first use in this function)
drivers/media/video/video-buf.c: In function 'videobuf_pci_dma_map':
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/Kconfig | 1 | ||||
-rw-r--r-- | linux/drivers/media/video/Kconfig | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/Kconfig b/linux/drivers/media/Kconfig index 87410dbd3..91d25798a 100644 --- a/linux/drivers/media/Kconfig +++ b/linux/drivers/media/Kconfig @@ -70,6 +70,7 @@ config VIDEO_TUNER depends on I2C config VIDEO_BUF + depends on PCI tristate config VIDEO_BUF_DVB diff --git a/linux/drivers/media/video/Kconfig b/linux/drivers/media/video/Kconfig index 57357db31..7a6105153 100644 --- a/linux/drivers/media/video/Kconfig +++ b/linux/drivers/media/video/Kconfig @@ -342,7 +342,7 @@ endmenu # encoder / decoder chips config VIDEO_VIVI tristate "Virtual Video Driver" - depends on VIDEO_V4L2 && !SPARC32 && !SPARC64 + depends on VIDEO_V4L2 && !SPARC32 && !SPARC64 && PCI select VIDEO_BUF default n ---help--- |