in my dvb_compat.c from 1.1.1 i can find #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
is this not correct ? if i load the crc32 module the error goes away. -Thomas On Thu, 2004-05-13 at 09:16, Ragnar Sundblad wrote: > --On den 12 maj 2004 23:15 +0200 Thomas Boernert <[EMAIL PROTECTED]> wrote: > > > Hello List! > > > > My System: > > Kernel 2.4.26 with <M> Video, <M> Input, <M> I2C ... > .... > > when loading dvb-ttpci.o i get this error: > > dvb-ttpci.o: unresolved symbol crc32_le_Ra34f1ef5 > > Yes, you need to bump the max version number in dvb_compat.c: > ----------- > Index: dvb_compat.c > =================================================================== > RCS file: > /cvs/linuxtv/dvb-kernel/linux/drivers/media/dvb/dvb-core/Attic/dvb_compat.c > ,v > retrieving revision 1.4 > diff -u -d -b -w -r1.4 dvb_compat.c > --- dvb_compat.c 20 Jan 2004 20:30:27 -0000 1.4 > +++ dvb_compat.c 13 May 2004 07:14:05 -0000 > @@ -72,7 +72,7 @@ > EXPORT_SYMBOL(crc32_be); > #endif > > -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,22)) > +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,27)) > > #define tole(x) __constant_cpu_to_le32(x) > ----------- > > This could be fixed in CVS too, IMHO. > I wonder if it wouldn't be better to have "< 2.5" in CVS. > > /ragge > -- Info: To unsubscribe send a mail to [EMAIL PROTECTED] with "unsubscribe linux-dvb" as subject.
