Dominique Dumont wrote: > -static unsigned int bt878_debug; > +static unsigned int bt878_debug = 0 ; Please don't do that, it's superflous and the kernel people don't like it. (It will increase the data segment by 4 bytes vs. having it in the bss segment which is initialized to 0.) Johannes