Skip to content

Commit

Permalink
staging: vt6655: use '%pM' format to print MAC address
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 16, 2010
1 parent ce3d824 commit 3c02dc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 1 addition & 3 deletions drivers/staging/vt6655/iwctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -2018,9 +2018,7 @@ param->u.wpa_key.seq_len = seq_len;

#if 0
printk("param->u.wpa_key.alg_name =%d\n",param->u.wpa_key.alg_name);
printk("param->addr=%02x:%02x:%02x:%02x:%02x:%02x\n",
param->addr[0],param->addr[1],param->addr[2],
param->addr[3],param->addr[4],param->addr[5]);
printk(KERN_DEBUG "param->addr=%pM\n", &param->addr[0]);
printk("param->u.wpa_key.set_tx =%d\n",param->u.wpa_key.set_tx);
printk("param->u.wpa_key.key_index =%d\n",param->u.wpa_key.key_index);
printk("param->u.wpa_key.key_len =%d\n",param->u.wpa_key.key_len);
Expand Down
7 changes: 3 additions & 4 deletions drivers/staging/vt6655/vntwifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,9 @@ VNTWIFIvGetTxRate(

wTxDataRate = (pMgmt->sNodeDBTable[0].wTxDataRate);
#ifdef PLICE_DEBUG
printk("GetTxRate:AP MAC is %02x:%02x:%02x:%02x:%02x:%02x,TxRate is %d\n",
pMgmt->sNodeDBTable[0].abyMACAddr[0],pMgmt->sNodeDBTable[0].abyMACAddr[1],
pMgmt->sNodeDBTable[0].abyMACAddr[2],pMgmt->sNodeDBTable[0].abyMACAddr[3],
pMgmt->sNodeDBTable[0].abyMACAddr[4],pMgmt->sNodeDBTable[0].abyMACAddr[5],wTxDataRate);
printk(KERN_DEBUG "GetTxRate:AP MAC is %pM,TxRate is %d\n",
&pMgmt->sNodeDBTable[0].abyMACAddr[0],
wTxDataRate);
#endif


Expand Down

0 comments on commit 3c02dc2

Please sign in to comment.