Skip to content

Commit

Permalink
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
torvalds committed Nov 3, 2015
2 parents e8a2a17 + bab84fa commit df91fba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions arch/m68k/sun3/idprom.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit df91fba

Please sign in to comment.