From: Sangwook Lee Date: Wed, 26 Oct 2011 15:28:38 +0000 (+0100) Subject: ath6kl: Fix compilation error from of.h X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f7830202c3ae934e2b978b750656626b203decb4;p=mv-sheeva.git ath6kl: Fix compilation error from of.h When compiling ath6kl for ARM with device tree tree compilation fails with errors like: include/linux/of.h: In function 'of_property_read_u32_array': include/linux/of.h:249:10: error: 'ENOSYS' undeclared Workaround this by including errno.h from init.c. kvalo: improved commit log Signed-off-by: Sangwook Lee Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index c638aabd417..6e6a1413ed3 100644 --- a/drivers/net/wireless/ath/ath6kl/init.c +++ b/drivers/net/wireless/ath/ath6kl/init.c @@ -16,6 +16,7 @@ */ #include +#include #include #include #include "core.h"