From: Jonathan Bither Date: Thu, 12 Apr 2012 10:13:33 +0000 (-0400) Subject: ath5k: fix undefined 'THIS_MODULE' X-Git-Tag: v3.4-rc6~23^2~8^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=32b92f4f3f261697a49f944e31920dbcbbd4ad01;p=platform%2Fupstream%2Fkernel-adaptation-pc.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 8faa129..47b6c35 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"