aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/iwctl.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andy.shevchenko@gmail.com>2010-09-11 17:17:12 +0300
committerGreg Kroah-Hartman <gregkh@suse.de>2010-09-16 12:26:11 -0700
commit3c02dc22a2559f1eab7cb261d106bab9c5de7938 (patch)
treeafa23ddf8d3998dfeb9cfec3145cdb0a5c28cdd1 /drivers/staging/vt6655/iwctl.c
parentstaging: wlags49_h2: use '%pM' format to print MAC address (diff)
downloadlinux-dev-3c02dc22a2559f1eab7cb261d106bab9c5de7938.tar.xz
linux-dev-3c02dc22a2559f1eab7cb261d106bab9c5de7938.zip
staging: vt6655: use '%pM' format to print MAC address
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6655/iwctl.c')
-rw-r--r--drivers/staging/vt6655/iwctl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/vt6655/iwctl.c b/drivers/staging/vt6655/iwctl.c
index 4009c0b5bb27..d74b7448b25b 100644
--- a/drivers/staging/vt6655/iwctl.c
+++ b/drivers/staging/vt6655/iwctl.c
@@ -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);