Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=72fb39ea58e7e2af93895fd12642b3fff2f76462
Commit:     72fb39ea58e7e2af93895fd12642b3fff2f76462
Parent:     f2100d82b858815848b661d57d7e166341c02e20
Author:     Mauro Carvalho Chehab <[EMAIL PROTECTED]>
AuthorDate: Thu Jun 7 09:42:20 2007 -0300
Committer:  Mauro Carvalho Chehab <[EMAIL PROTECTED]>
CommitDate: Fri Jun 8 08:54:39 2007 -0300

    V4L/DVB (5761): Fix broken b2c2 dependency on non x86 architectures
    
    This patch moves flexcop-dma (currently used only by flexcop-pci) to
    b2c2-flexcop-pci module, that is dependent on CONFIG_PCI, fixing the bug
    as reported by Geert Uytterhoeven <[EMAIL PROTECTED]>:
    
    drivers/media/dvb/b2c2/flexcop-dma.c uses the PCI DMA API, but
    DVB_B2C2_FLEXCOP doesn't depend on PCI, causing the following problem on
    PCI-less systems:
    
    | linux/drivers/media/dvb/b2c2/flexcop-dma.c:20: warning: implicit 
declaration of function 'pci_alloc_consistent'
    | linux/drivers/media/dvb/b2c2/flexcop-dma.c:20: warning: implicit 
declaration of function 'pci_alloc_consistent'
    
    Apparently this is the flexcop DMA core, which is used by both
    DVB_B2C2_FLEXCOP_PCI and DVB_B2C2_FLEXCOP_USB.
    
    Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>
---
 drivers/media/dvb/b2c2/Makefile |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/media/dvb/b2c2/Makefile b/drivers/media/dvb/b2c2/Makefile
index 1a1c3bc..bff00b5 100644
--- a/drivers/media/dvb/b2c2/Makefile
+++ b/drivers/media/dvb/b2c2/Makefile
@@ -1,8 +1,11 @@
 b2c2-flexcop-objs = flexcop.o flexcop-fe-tuner.o flexcop-i2c.o \
-       flexcop-sram.o flexcop-eeprom.o flexcop-misc.o flexcop-hw-filter.o \
-       flexcop-dma.o
+       flexcop-sram.o flexcop-eeprom.o flexcop-misc.o flexcop-hw-filter.o
 obj-$(CONFIG_DVB_B2C2_FLEXCOP) += b2c2-flexcop.o
 
+ifneq ($(CONFIG_DVB_B2C2_FLEXCOP_PCI),)
+b2c2-flexcop-objs += flexcop-dma.o
+endif
+
 b2c2-flexcop-pci-objs = flexcop-pci.o
 obj-$(CONFIG_DVB_B2C2_FLEXCOP_PCI) += b2c2-flexcop-pci.o
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to