From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sarah Nadi Date: Thu, 19 May 2011 11:03:54 -0400 Subject: [ath9k-devel] PROBLEM: No config definition for ATHEROS_AR71XX Message-ID: <4DD5315A.4050005@uwaterloo.ca> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ath9k-devel@lists.ath9k.org Hi, From: Sarah Nadi *Summary:* There is no config definition for ATHEROS_AR71XX in any of the Kconfig files while it is used in /drivers/net/wireless/ath/ath9k/ath9k.h and ./drivers/net/wireless/ath/ath9k/Makefile. *Problem Description:* In version 2.6.38.6, there is no config definition for ATHEROS_AR71XX in any of the Kconfig files while CONFIG_ATHEROS_AR71XX is used in: ./drivers/net/wireless/ath/ath9k/Makefile : ath9k-$(CONFIG_ATHEROS_AR71XX) += ahb.o: and in /drivers/net/wireless/ath/ath9k/ath9k.h: #ifdef CONFIG_ATHEROS_AR71XX int ath_ahb_init(void); void ath_ahb_exit(void); #else static inline int ath_ahb_init(void) { return 0; }; static inline void ath_ahb_exit(void) {}; #endif This means that this feature can never be enabled, and so ahb.c is never compiled into the kernel, and the code block depending on it in ath9k.h is also never compiled. Thanks, Sarah -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20110519/de35db74/attachment.htm