diff options
author | Andy Shevchenko <andy.shevchenko@gmail.com> | 2010-09-13 04:24:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-22 13:21:40 -0400 |
commit | d3134c3b1a5d2a9dca2ddacacb5d08fad7941d8c (patch) | |
tree | 36ca383baf8dcd55eda8632ca1e0f09b0ba877f7 /drivers/uwb | |
parent | ecfa153ef616b901e86d9a051b329fcda7a6ce7b (diff) |
uwb: use '%pM' format to print MAC address
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: David Vrabel <david.vrabel@csr.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/uwb')
-rw-r--r-- | drivers/uwb/address.c | 5 | ||||
-rw-r--r-- | drivers/uwb/wlp/wss-lc.c | 7 |
2 files changed, 3 insertions, 9 deletions
diff --git a/drivers/uwb/address.c b/drivers/uwb/address.c index 973321327c44..8739c4f4d015 100644 --- a/drivers/uwb/address.c +++ b/drivers/uwb/address.c | |||
@@ -363,10 +363,7 @@ size_t __uwb_addr_print(char *buf, size_t buf_size, const unsigned char *addr, | |||
363 | { | 363 | { |
364 | size_t result; | 364 | size_t result; |
365 | if (type) | 365 | if (type) |
366 | result = scnprintf(buf, buf_size, | 366 | result = scnprintf(buf, buf_size, "%pM", addr); |
367 | "%02x:%02x:%02x:%02x:%02x:%02x", | ||
368 | addr[0], addr[1], addr[2], | ||
369 | addr[3], addr[4], addr[5]); | ||
370 | else | 367 | else |
371 | result = scnprintf(buf, buf_size, "%02x:%02x", | 368 | result = scnprintf(buf, buf_size, "%02x:%02x", |
372 | addr[1], addr[0]); | 369 | addr[1], addr[0]); |
diff --git a/drivers/uwb/wlp/wss-lc.c b/drivers/uwb/wlp/wss-lc.c index a005d2a03b5d..67872c83b679 100644 --- a/drivers/uwb/wlp/wss-lc.c +++ b/drivers/uwb/wlp/wss-lc.c | |||
@@ -791,11 +791,8 @@ int wlp_wss_prep_hdr(struct wlp *wlp, struct wlp_eda_node *eda_entry, | |||
791 | } else { | 791 | } else { |
792 | if (printk_ratelimit()) | 792 | if (printk_ratelimit()) |
793 | dev_err(dev, "WLP: Destination neighbor (Ethernet: " | 793 | dev_err(dev, "WLP: Destination neighbor (Ethernet: " |
794 | "%02x:%02x:%02x:%02x:%02x:%02x, Dev: " | 794 | "%pM, Dev: %02x:%02x) is not connected.\n", |
795 | "%02x:%02x) is not connected. \n", eth_addr[0], | 795 | eth_addr, dev_addr->data[1], dev_addr->data[0]); |
796 | eth_addr[1], eth_addr[2], eth_addr[3], | ||
797 | eth_addr[4], eth_addr[5], dev_addr->data[1], | ||
798 | dev_addr->data[0]); | ||
799 | result = -EINVAL; | 796 | result = -EINVAL; |
800 | } | 797 | } |
801 | return result; | 798 | return result; |