Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k

Pull m68k update from Geert Uytterhoeven.

* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k:
  m68k/sun3: Use %pM format specifier to print ethernet address
This commit is contained in:
Linus Torvalds 2015-11-03 13:01:48 -08:00
commit df91fba5e7
1 changed files with 1 additions and 4 deletions

View File

@ -125,8 +125,5 @@ void __init idprom_init(void)
display_system_type(idprom->id_machtype);
printk("Ethernet address: %x:%x:%x:%x:%x:%x\n",
idprom->id_ethaddr[0], idprom->id_ethaddr[1],
idprom->id_ethaddr[2], idprom->id_ethaddr[3],
idprom->id_ethaddr[4], idprom->id_ethaddr[5]);
printk("Ethernet address: %pM\n", idprom->id_ethaddr);
}