On Tue, Oct 06, 2009 at 08:52:23PM +0200, Riffer wrote: > Another problem is that the archive from today can not be compiled: > > /home/riffer/bleeding/compat-wireless-2009-10-06/drivers/net/wireless/ath/main.o > In file included from > /home/riffer/bleeding/compat-wireless-2009-10-06/include/net/mac80211.h:22, > from > /home/riffer/bleeding/compat-wireless-2009-10-06/drivers/net/wireless/ath/ath.h:22, > from > /home/riffer/bleeding/compat-wireless-2009-10-06/drivers/net/wireless/ath/main.c:20: > /home/riffer/bleeding/compat-wireless-2009-10-06/include/net/cfg80211.h:1146: > Fehler: »ETHTOOL_BUSINFO_LEN« ist hier nicht deklariert (nicht in einer > Funktion) > (translation: > Error »ETHTOOL_BUSINFO_LEN« is not declared here (not in a function)) Odd that I didn't hit that, but whatever...does this fix it for you? >From 463049630fa4c256025093ce94c66f9f4247b7c8 Mon Sep 17 00:00:00 2001 From: John W. Linville <linville@xxxxxxxxxxxxx> Date: Tue, 6 Oct 2009 16:55:28 -0400 Subject: [PATCH] cfg80211: fix compile error from missing ethtool.h Signed-off-by: John W. Linville <linville@xxxxxxxxxxxxx> --- include/net/cfg80211.h | 1 + net/wireless/ethtool.h | 2 -- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 6f4862b..14915ea 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -18,6 +18,7 @@ #include <linux/nl80211.h> #include <linux/if_ether.h> #include <linux/ieee80211.h> +#include <linux/ethtool.h> #include <net/regulatory.h> /* remove once we remove the wext stuff */ diff --git a/net/wireless/ethtool.h b/net/wireless/ethtool.h index 70cbee1..695ecad 100644 --- a/net/wireless/ethtool.h +++ b/net/wireless/ethtool.h @@ -1,8 +1,6 @@ #ifndef __CFG80211_ETHTOOL__ #define __CFG80211_ETHTOOL__ -#include <linux/ethtool.h> - extern const struct ethtool_ops cfg80211_ethtool_ops; #endif /* __CFG80211_ETHTOOL__ */ -- 1.6.2.5 -- John W. Linville Someday the world will need a hero, and you linville@xxxxxxxxxxxxx might be all we have. Be ready. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html