From patchwork Wed Oct 26 15:28:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sangwook X-Patchwork-Id: 4835 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 9F9C423DEF for ; Wed, 26 Oct 2011 15:30:56 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 8CF29A182EA for ; Wed, 26 Oct 2011 15:30:56 +0000 (UTC) Received: by faan26 with SMTP id n26so2370958faa.11 for ; Wed, 26 Oct 2011 08:30:56 -0700 (PDT) Received: by 10.223.30.149 with SMTP id u21mr2233631fac.18.1319643056326; Wed, 26 Oct 2011 08:30:56 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.1.71 with SMTP id 7cs18168lak; Wed, 26 Oct 2011 08:30:55 -0700 (PDT) Received: by 10.213.31.71 with SMTP id x7mr329882ebc.124.1319643044555; Wed, 26 Oct 2011 08:30:44 -0700 (PDT) Received: from mail-fx0-f50.google.com (mail-fx0-f50.google.com [209.85.161.50]) by mx.google.com with ESMTPS id r1si579716eef.81.2011.10.26.08.30.43 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 26 Oct 2011 08:30:44 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.161.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) client-ip=209.85.161.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.161.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) smtp.mail=sangwook.lee@linaro.org Received: by faap19 with SMTP id p19so1979984faa.37 for ; Wed, 26 Oct 2011 08:30:43 -0700 (PDT) Received: by 10.223.85.139 with SMTP id o11mr59831086fal.0.1319643043305; Wed, 26 Oct 2011 08:30:43 -0700 (PDT) Received: from localhost.localdomain (host86-183-253-170.range86-183.btcentralplus.com. [86.183.253.170]) by mx.google.com with ESMTPS id a8sm4686983faa.11.2011.10.26.08.30.41 (version=SSLv3 cipher=OTHER); Wed, 26 Oct 2011 08:30:42 -0700 (PDT) From: Sangwook Lee To: linux-wireless@vger.kernel.org Cc: kvalo@qca.qualcomm.com, patches@linaro.org, Sangwook Lee Subject: =?UTF-8?q?=5BPATCH=5D=20ath6kl=3A=20Fix=20compile=20error=20for=20ARM?= Date: Wed, 26 Oct 2011 16:28:38 +0100 Message-Id: <1319642918-27076-1-git-send-email-sangwook.lee@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 Fix the compile error for ARM Platform. Signed-off-by: Sangwook Lee --- Compile errors come from ARM plaform: In file included from drivers/net/wireless/ath/ath6kl/init.c:19:0: include/linux/of.h: In function ‘of_property_read_u32_array’: include/linux/of.h:249:10: error: ‘ENOSYS’ undeclared drivers/net/wireless/ath/ath6kl/init.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index 4c0c314..64975a9 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"