[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1166601865.22609.1.camel@devlinux-hong>
Date: Wed, 20 Dec 2006 16:04:25 +0800
From: Hong Liu <hong.liu@...el.com>
To: Jiri Benc <jbenc@...e.cz>
Cc: "John W. Linville" <linville@...driver.com>,
netdev <netdev@...r.kernel.org>
Subject: [PATCH] d80211: fix get_tsf call
get_tsf passes the wrong pointer to driver.
Signed-off-by: Hong Liu <hong.liu@...el.com>
diff --git a/net/d80211/ieee80211_sta.c b/net/d80211/ieee80211_sta.c
index 3b55427..e48295e 100644
--- a/net/d80211/ieee80211_sta.c
+++ b/net/d80211/ieee80211_sta.c
@@ -2482,7 +2482,7 @@ #ifdef CONFIG_D80211_IBSS_DEBUG
static unsigned long last_tsf_debug = 0;
u64 tsf;
if (local->ops->get_tsf)
- tsf = local->ops->get_tsf(local->mdev);
+ tsf = local->ops->get_tsf(local_to_hw(local));
else
tsf = -1LLU;
if (time_after(jiffies, last_tsf_debug + 5 * HZ)) {
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists