Skip to content

Commit

Permalink
V4L/DVB: media: cx23885: 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: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Andy Shevchenko authored and Mauro Carvalho Chehab committed Oct 21, 2010
1 parent f89ca6f commit 5cac1f6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/media/video/cx23885/cx23885-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1017,10 +1017,7 @@ static int dvb_register(struct cx23885_tsport *port)
/* Read entire EEPROM */
dev->i2c_bus[0].i2c_client.addr = 0xa0 >> 1;
tveeprom_read(&dev->i2c_bus[0].i2c_client, eeprom, sizeof(eeprom));
printk(KERN_INFO "TeVii S470 MAC= "
"%02X:%02X:%02X:%02X:%02X:%02X\n",
eeprom[0xa0], eeprom[0xa1], eeprom[0xa2],
eeprom[0xa3], eeprom[0xa4], eeprom[0xa5]);
printk(KERN_INFO "TeVii S470 MAC= %pM\n", eeprom + 0xa0);
memcpy(port->frontends.adapter.proposed_mac, eeprom + 0xa0, 6);
break;
}
Expand Down

0 comments on commit 5cac1f6

Please sign in to comment.