From: Jonathan Bither Date: Thu, 12 Apr 2012 10:13:33 +0000 (-0400) Subject: ath5k: fix undefined 'THIS_MODULE' X-Git-Tag: next-20120417~87^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=32b92f4f3f261697a49f944e31920dbcbbd4ad01;p=karo-tx-linux.git ath5k: fix undefined 'THIS_MODULE' When cross compiling ath5k for a Mips machine with kernel 3.2.14 the compilation fails with "/ath5k/ahb.c:231:12: error: 'THIS_MODULE' undeclared here (not in a function)" Fix the build by including Signed-off-by: Jonathan Bither Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath5k/ahb.c b/drivers/net/wireless/ath/ath5k/ahb.c index 8faa129da5a0..47b6c35077d6 100644 --- a/drivers/net/wireless/ath/ath5k/ahb.c +++ b/drivers/net/wireless/ath/ath5k/ahb.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include "ath5k.h" #include "debug.h"