Kernel module for gvna does not build with recent kernels (2.6.22.4 in my case - Fedora 7 with updates).
There are two problems:
1. linux/config.h was removed from kernel, sources of another kernel module suggests using linux/autoconf.h instead.
2. MODULE_PARM(debug, "h") fails, this probably should be replaced with module_param(debug,...) on kernels above 2.6.9
PS. The hints are based on SVN of rtl-wifi driver available from Sourceforge.
Logged In: YES
user_id=286510
Originator: YES
More on the problems:
1. linux/conflg.h can be safely removed for kernels above 2.6.19,
2. the replacement macro should be
module_param(debug, int, S_IRUGO | S_IWUSR );
Patch submited (item #1791084).