linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ath9k: fix compile errors
@ 2009-03-06  8:57 Gabor Juhos
  2009-03-06  8:57 ` [PATCH 1/2] ath9k: fix compile error in ahb.c Gabor Juhos
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Gabor Juhos @ 2009-03-06  8:57 UTC (permalink / raw)
  To: John W. Linville
  Cc: ath9k-devel@lists.ath9k.org, linux-wireless@vger.kernel.org,
	Gabor Juhos

This set will correct two compilation errors in master-2009-03-04 
of wireless-testing.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] ath9k: fix compile error in ahb.c
  2009-03-06  8:57 [PATCH 0/2] ath9k: fix compile errors Gabor Juhos
@ 2009-03-06  8:57 ` Gabor Juhos
  2009-03-06  8:57 ` [PATCH 2/2] ath9k: fix compile error in debug.c Gabor Juhos
  2009-03-06 10:29 ` [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors Jouni Malinen
  2 siblings, 0 replies; 5+ messages in thread
From: Gabor Juhos @ 2009-03-06  8:57 UTC (permalink / raw)
  To: John W. Linville
  Cc: ath9k-devel@lists.ath9k.org, linux-wireless@vger.kernel.org,
	Gabor Juhos

drivers/net/wireless/ath9k/ahb.c: In function 'ath_ahb_probe':
drivers/net/wireless/ath9k/ahb.c:136: error: 'aphy' undeclared (first
use in this function)

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
---
 drivers/net/wireless/ath9k/ahb.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/net/wireless/ath9k/ahb.c b/drivers/net/wireless/ath9k/ahb.c
index bc562bd..00cc7bb 100644
--- a/drivers/net/wireless/ath9k/ahb.c
+++ b/drivers/net/wireless/ath9k/ahb.c
@@ -60,6 +60,7 @@ static struct ath_bus_ops ath_ahb_bus_ops  = {
 static int ath_ahb_probe(struct platform_device *pdev)
 {
 	void __iomem *mem;
+	struct ath_wiphy *aphy;
 	struct ath_softc *sc;
 	struct ieee80211_hw *hw;
 	struct resource *res;
-- 
1.5.3.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] ath9k: fix compile error in debug.c
  2009-03-06  8:57 [PATCH 0/2] ath9k: fix compile errors Gabor Juhos
  2009-03-06  8:57 ` [PATCH 1/2] ath9k: fix compile error in ahb.c Gabor Juhos
@ 2009-03-06  8:57 ` Gabor Juhos
  2009-03-06 10:29 ` [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors Jouni Malinen
  2 siblings, 0 replies; 5+ messages in thread
From: Gabor Juhos @ 2009-03-06  8:57 UTC (permalink / raw)
  To: John W. Linville
  Cc: ath9k-devel@lists.ath9k.org, linux-wireless@vger.kernel.org,
	Gabor Juhos

drivers/net/wireless/ath9k/debug.c: In function 'read_file_wiphy':
drivers/net/wireless/ath9k/debug.c:377: error: implicit declaration of
function 'put_unaligned_le32'
drivers/net/wireless/ath9k/debug.c:378: error: implicit declaration of
function 'put_unaligned_le16'

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
---
 drivers/net/wireless/ath9k/debug.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/net/wireless/ath9k/debug.c b/drivers/net/wireless/ath9k/debug.c
index 8d91422..bce6476 100644
--- a/drivers/net/wireless/ath9k/debug.c
+++ b/drivers/net/wireless/ath9k/debug.c
@@ -14,6 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <asm/unaligned.h>
+
 #include "ath9k.h"
 
 static unsigned int ath9k_debug = DBG_DEFAULT;
-- 
1.5.3.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors
  2009-03-06  8:57 [PATCH 0/2] ath9k: fix compile errors Gabor Juhos
  2009-03-06  8:57 ` [PATCH 1/2] ath9k: fix compile error in ahb.c Gabor Juhos
  2009-03-06  8:57 ` [PATCH 2/2] ath9k: fix compile error in debug.c Gabor Juhos
@ 2009-03-06 10:29 ` Jouni Malinen
  2009-03-06 17:54   ` Gabor Juhos
  2 siblings, 1 reply; 5+ messages in thread
From: Jouni Malinen @ 2009-03-06 10:29 UTC (permalink / raw)
  To: Gabor Juhos
  Cc: John W. Linville, ath9k-devel@lists.ath9k.org,
	linux-wireless@vger.kernel.org

On Fri, 2009-03-06 at 00:57 -0800, Gabor Juhos wrote:
> This set will correct two compilation errors in master-2009-03-04
> of wireless-testing.

Thanks for fixing these and the no-RFKILL build issue! Looks like I
should try to get a build setup for testing ahb.c build myself..

- Jouni



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors
  2009-03-06 10:29 ` [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors Jouni Malinen
@ 2009-03-06 17:54   ` Gabor Juhos
  0 siblings, 0 replies; 5+ messages in thread
From: Gabor Juhos @ 2009-03-06 17:54 UTC (permalink / raw)
  To: Jouni Malinen
  Cc: John W. Linville, ath9k-devel@lists.ath9k.org,
	linux-wireless@vger.kernel.org

Jouni Malinen =EDrta:
> On Fri, 2009-03-06 at 00:57 -0800, Gabor Juhos wrote:
>> This set will correct two compilation errors in master-2009-03-04
>> of wireless-testing.
>=20
> Thanks for fixing these and the no-RFKILL build issue! Looks like I
> should try to get a build setup for testing ahb.c build myself..

No problem.

Gabor
--
To unsubscribe from this list: send the line "unsubscribe linux-wireles=
s" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-03-06 17:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-06  8:57 [PATCH 0/2] ath9k: fix compile errors Gabor Juhos
2009-03-06  8:57 ` [PATCH 1/2] ath9k: fix compile error in ahb.c Gabor Juhos
2009-03-06  8:57 ` [PATCH 2/2] ath9k: fix compile error in debug.c Gabor Juhos
2009-03-06 10:29 ` [ath9k-devel] [PATCH 0/2] ath9k: fix compile errors Jouni Malinen
2009-03-06 17:54   ` Gabor Juhos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).