Skip to content

Commit

Permalink
staging: rtl8712: '&pointer[0]' to 'pointer' fix
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andy Shevchenko authored and Greg Kroah-Hartman committed Sep 20, 2010
1 parent db5c53d commit a5ed57a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8712/rtl871x_ioctl_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -1917,7 +1917,7 @@ static int r871x_get_ap_info(struct net_device *dev,
irqL);
return -EINVAL;
}
printk(KERN_INFO "r8712u: BSSID:%pM\n", &bssid[0]);
printk(KERN_INFO "r8712u: BSSID:%pM\n", bssid);
if (!memcmp(bssid, pnetwork->network.MacAddress, ETH_ALEN)) {
/* BSSID match, then check if supporting wpa/wpa2 */
pbuf = r8712_get_wpa_ie(&pnetwork->network.IEs[12],
Expand Down

0 comments on commit a5ed57a

Please sign in to comment.