On Wed, 2003-06-25 at 19:52, Gregoire Favre wrote: > Compiling the CVS gives me: > > WARNING: /lib/modules/2.5.73/kernel/drivers/media/dvb/ttpci/dvb-ttpci.ko > needs unknown symbol ttpci_eeprom_parse_mac
The attached patch fixed this problem at least for me. I don't know if this is the correct way to fix this, though.. -- Oskar Signell <[EMAIL PROTECTED]>
--- linux/drivers/media/dvb/ttpci/Makefile.old 2003-06-25 20:21:48.000000000 +0300 +++ linux/drivers/media/dvb/ttpci/Makefile 2003-06-25 20:18:48.000000000 +0300 @@ -3,7 +3,7 @@ # and the AV7110 DVB device driver # -dvb-ttpci-objs := av7110.o av7110_ipack.o av7110_ir.o +dvb-ttpci-objs := av7110.o av7110_ipack.o av7110_ir.o ttpci-eeprom.o obj-$(CONFIG_DVB_BUDGET) += budget-core.o budget.o ttpci-eeprom.o obj-$(CONFIG_DVB_BUDGET_AV) += budget-core.o budget-av.o ttpci-eeprom.o
