diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-27 17:47:26 -0700 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-27 17:47:26 -0700 |
commit | ea995c822add678fd16748cc6b9d1f180ca3e801 (patch) | |
tree | d7ed57ca1f63613a08005d17898b1615a782e5d9 /linux/drivers/media/dvb/b2c2 | |
parent | 6ccda240cb23a33beb59c38cf209db0ccfabc4e8 (diff) | |
download | mediapointer-dvb-s2-ea995c822add678fd16748cc6b9d1f180ca3e801.tar.gz mediapointer-dvb-s2-ea995c822add678fd16748cc6b9d1f180ca3e801.tar.bz2 |
backport commit 7c510e4b730a92cecf94ada45c989d8be0200d47
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Author: Johannes Berg <johannes@sipsolutions.net>
net: convert more to %pM
A number of places still use %02x:...:%02x because it's
in debug statements or for no real reason. Make a few
of them use %pM.
kernel-sync:
Priority: normal
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/dvb/b2c2')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/flexcop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/b2c2/flexcop.c b/linux/drivers/media/dvb/b2c2/flexcop.c index 5f79c8dc3..676413a91 100644 --- a/linux/drivers/media/dvb/b2c2/flexcop.c +++ b/linux/drivers/media/dvb/b2c2/flexcop.c @@ -270,7 +270,7 @@ int flexcop_device_initialize(struct flexcop_device *fc) /* do the MAC address reading after initializing the dvb_adapter */ if (fc->get_mac_addr(fc, 0) == 0) { u8 *b = fc->dvb_adapter.proposed_mac; - info("MAC address = %02x:%02x:%02x:%02x:%02x:%02x", b[0],b[1],b[2],b[3],b[4],b[5]); + info("MAC address = %pM", b); flexcop_set_mac_filter(fc,b); flexcop_mac_filter_ctrl(fc,1); } else |