Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219888
b: refs/heads/master
c: 97d2354
h: refs/heads/master
v: v3
  • Loading branch information
Andy Shevchenko authored and Greg Kroah-Hartman committed Sep 20, 2010
1 parent 020be63 commit c778be9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b01d467ddd7470b1e9c6ccc68a1279771146abad
refs/heads/master: 97d2354518897cfc42740637e6390eaa23e3d206
4 changes: 2 additions & 2 deletions trunk/drivers/staging/ath6kl/os/linux/ar6000_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ ar6000_softmac_update(AR_SOFTC_T *ar, A_UCHAR *eeprom_data, size_t size)
AR_DEBUG_PRINTF(ATH_DEBUG_ERR, ("Invalid Target Type\n"));
return;
}
printk(KERN_DEBUG "MAC from EEPROM %pM\n", &ptr_mac[0]);
printk(KERN_DEBUG "MAC from EEPROM %pM\n", ptr_mac);

/* create a random MAC in case we cannot read file from system */
ptr_mac[0] = 0;
Expand Down Expand Up @@ -988,7 +988,7 @@ ar6000_softmac_update(AR_SOFTC_T *ar, A_UCHAR *eeprom_data, size_t size)
}
A_RELEASE_FIRMWARE(softmac_entry);
}
printk(KERN_DEBUG "MAC from %s %pM\n", source, &ptr_mac[0]);
printk(KERN_DEBUG "MAC from %s %pM\n", source, ptr_mac);
calculate_crc(ar->arTargetType, eeprom_data);
}
#endif /* SOFTMAC_FILE_USED */
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/ath6kl/os/linux/cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ ar6k_cfg80211_connect_event(AR_SOFTC_T *ar, A_UINT16 channel,

AR_DEBUG_PRINTF(ATH_DEBUG_INFO,
("%s: inform bss with bssid %pM channel %d beaconInterval %d "
"capability 0x%x\n", __func__, &mgmt->bssid[0],
"capability 0x%x\n", __func__, mgmt->bssid,
ibss_channel->hw_value, beaconInterval, capability));

bss = cfg80211_inform_bss_frame(ar->wdev->wiphy,
Expand Down Expand Up @@ -714,7 +714,7 @@ ar6k_cfg80211_scan_node(void *arg, bss_t *ni)

AR_DEBUG_PRINTF(ATH_DEBUG_INFO,
("%s: bssid %pM channel %d freq %d size %d\n", __func__,
&mgmt->bssid[0], channel->hw_value, freq, size));
mgmt->bssid, channel->hw_value, freq, size));
cfg80211_inform_bss_frame(wiphy, channel, mgmt,
le16_to_cpu(size),
signal, GFP_KERNEL);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/ath6kl/wmi/wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ wmi_bssInfo_event_rx(struct wmi_t *wmip, A_UINT8 *datap, int len)

A_DPRINTF(DBG_WMI2, (DBGFMT "bssInfo event - ch %u, rssi %02x, "
"bssid \"%pM\"\n", DBGARG, bih->channel,
(unsigned char) bih->rssi, i&bih->bssid[0]));
(unsigned char) bih->rssi, bih->bssid));

if(wps_enable && (bih->frameType == PROBERESP_FTYPE) ) {
wmi_node_return(wmip, bss);
Expand Down

0 comments on commit c778be9

Please sign in to comment.