>> >>> - if (!create_proc_info_entry("freemware", 0, NULL, fmw_read_procmem))
>> >>> + if (!create_proc_info_entry("freemware", 0, NULL, (void
>> >>>*)fmw_read_procmem))
>> >>
>> >>Oops. Is there a argument type mismatch? Don't hide it, fix it ;-)
>> >Yes, came a compiler warning. Guess it should be a void *, so the compiler
>> >is friendly ;)
Looked into sources of kernel 2.3.39 - has to be
if (!create_proc_info_entry("freemware", 0, NULL, (get_info_t *)fmw_read_procmem))
in host-linux.c.
Please change it in your copy - I don't know whether you applyed a former patch
from me to change this line, thats why no patch...
jens