I'm building the wireless driver from https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.10.4/backports-3.10.4-1.tar.bz2 and I get this error message. I have build-essential and the generic headers installed.. not sure where to go from here. Any help would be appreciated!
ipw2200.c:8259:4: error: implicit declaration of function ‘__list_for_each’ [-Werror=implicit-function-declaration] __list_for_each(p, &priv->ibss_mac_hash[index]) {
list_for_each
instead of__list_for_each
. You could simply change it to that at the source code of the driver at line 8259. – Irfan