Hi Andy, On Sat, 2002-11-16 at 22:56, andy wrote: > I tried those drivers on several different kernel revisions, and got the > same result on them all: > zoran.c: In function `zr36060_reset': > zoran.c:1494: warning: deprecated use of label at end of compound > statement > zoran.c: In function `zoran_open': > zoran.c:3277: structure has no member named `busy' > zoran.c: At top level: > zoran.c:4258: unknown field `busy' specified in initializer You're using a non-standard (not dl'ed from kernel.org) kernel, so this sometimes happens. Edit the file zoran.c, and go to line 3277 and 4258. You'll find expressions like '#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,19) [something]'. Change 2,4,19 to 2,4,18 and it'll compile. Next time, try using kernels from kernel.org to prevent such things. Our CVS is only meant to work on them. Distribution-specific kernels basically aren't supported. Ronald