|
@@ -64,7 +64,7 @@ int prism2_rx_80211(struct net_device *dev, struct sk_buff *skb,
|
|
|
int hdrlen, phdrlen, head_need, tail_need;
|
|
|
u16 fc;
|
|
|
int prism_header, ret;
|
|
|
- struct ieee80211_hdr_4addr *hdr;
|
|
|
+ struct ieee80211_hdr_4addr *fhdr;
|
|
|
|
|
|
iface = netdev_priv(dev);
|
|
|
local = iface->local;
|
|
@@ -83,8 +83,8 @@ int prism2_rx_80211(struct net_device *dev, struct sk_buff *skb,
|
|
|
phdrlen = 0;
|
|
|
}
|
|
|
|
|
|
- hdr = (struct ieee80211_hdr_4addr *) skb->data;
|
|
|
- fc = le16_to_cpu(hdr->frame_ctl);
|
|
|
+ fhdr = (struct ieee80211_hdr_4addr *) skb->data;
|
|
|
+ fc = le16_to_cpu(fhdr->frame_ctl);
|
|
|
|
|
|
if (type == PRISM2_RX_MGMT && (fc & IEEE80211_FCTL_VERS)) {
|
|
|
printk(KERN_DEBUG "%s: dropped management frame with header "
|
|
@@ -551,7 +551,7 @@ hostap_rx_frame_wds(local_info_t *local, struct ieee80211_hdr_4addr *hdr,
|
|
|
hdr->addr1[2] != 0xff || hdr->addr1[3] != 0xff ||
|
|
|
hdr->addr1[4] != 0xff || hdr->addr1[5] != 0xff)) {
|
|
|
/* RA (or BSSID) is not ours - drop */
|
|
|
- PDEBUG(DEBUG_EXTRA, "%s: received WDS frame with "
|
|
|
+ PDEBUG(DEBUG_EXTRA2, "%s: received WDS frame with "
|
|
|
"not own or broadcast %s=%s\n",
|
|
|
local->dev->name,
|
|
|
fc & IEEE80211_FCTL_FROMDS ? "RA" : "BSSID",
|