From mboxrd@z Thu Jan 1 00:00:00 1970 From: Felipe Contreras Subject: [PATCH 2/2] mac80211: fix compilation warning Date: Sun, 12 Sep 2010 14:10:29 +0300 Message-ID: <1284289829-25425-3-git-send-email-felipe.contreras@gmail.com> References: <1284289829-25425-1-git-send-email-felipe.contreras@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Jiri Kosina , Felipe Contreras , Johannes Berg , "John W. Linville" , "David S. Miller" , Kalle Valo , Felix Fietkau , Jouni Malinen , linux-wireless@vger.kernel.org, netdev@vger.kernel.org To: linux-kernel@vger.kernel.org Return-path: Received: from mail-bw0-f46.google.com ([209.85.214.46]:52496 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752014Ab0ILLL0 (ORCPT ); Sun, 12 Sep 2010 07:11:26 -0400 In-Reply-To: <1284289829-25425-1-git-send-email-felipe.contreras@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: net/mac80211/tx.c: In function =E2=80=98ieee80211_subif_start_xmit=E2=80= =99: net/mac80211/tx.c:1702: warning: unused variable =E2=80=98mesh_hdr=E2=80= =99 Signed-off-by: Felipe Contreras --- net/mac80211/tx.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index c54db96..323a6b5 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -1699,7 +1699,6 @@ netdev_tx_t ieee80211_subif_start_xmit(struct sk_= buff *skb, u16 ethertype, hdrlen, meshhdrlen =3D 0; __le16 fc; struct ieee80211_hdr hdr; - struct ieee80211s_hdr mesh_hdr; const u8 *encaps_data; int encaps_len, skip_header_bytes; int nh_pos, h_pos; @@ -1755,7 +1754,9 @@ netdev_tx_t ieee80211_subif_start_xmit(struct sk_= buff *skb, hdrlen =3D 30; break; #ifdef CONFIG_MAC80211_MESH - case NL80211_IFTYPE_MESH_POINT: + case NL80211_IFTYPE_MESH_POINT: { + struct ieee80211s_hdr mesh_hdr; + if (!sdata->u.mesh.mshcfg.dot11MeshTTL) { /* Do not send frames with mesh_ttl =3D=3D 0 */ sdata->u.mesh.mshstats.dropped_frames_ttl++; @@ -1813,6 +1814,7 @@ netdev_tx_t ieee80211_subif_start_xmit(struct sk_= buff *skb, =20 } break; + } #endif case NL80211_IFTYPE_STATION: memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN); --=20 1.7.2.3