summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/dm1105/dm1105.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2008-10-27 17:47:26 -0700
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-27 17:47:26 -0700
commitea995c822add678fd16748cc6b9d1f180ca3e801 (patch)
treed7ed57ca1f63613a08005d17898b1615a782e5d9 /linux/drivers/media/dvb/dm1105/dm1105.c
parent6ccda240cb23a33beb59c38cf209db0ccfabc4e8 (diff)
downloadmediapointer-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/dm1105/dm1105.c')
-rw-r--r--linux/drivers/media/dvb/dm1105/dm1105.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/dm1105/dm1105.c b/linux/drivers/media/dvb/dm1105/dm1105.c
index d7034e6a1..b054d056d 100644
--- a/linux/drivers/media/dvb/dm1105/dm1105.c
+++ b/linux/drivers/media/dvb/dm1105/dm1105.c
@@ -703,8 +703,7 @@ static void __devinit dm1105dvb_read_mac(struct dm1105dvb *dm1105dvb, u8 *mac)
};
dm1105_i2c_xfer(&dm1105dvb->i2c_adap, msg , 2);
- dev_info(&dm1105dvb->pdev->dev, "MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
- mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
+ dev_info(&dm1105dvb->pdev->dev, "MAC %pM\n", mac);
}
static int __devinit dm1105_probe(struct pci_dev *pdev,