瀏覽代碼

m68k/sun3: Use %pM format specifier to print ethernet address

printk() supports %pM format specifier for printing 6-byte MAC/FDDI
addresses in hex notation small buffers, let's use it intead of %x:%x...

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Alexander Kuleshov 10 年之前
父節點
當前提交
bab84fa9cc
共有 1 個文件被更改,包括 1 次插入4 次删除
  1. 1 4
      arch/m68k/sun3/idprom.c

+ 1 - 4
arch/m68k/sun3/idprom.c

@@ -125,8 +125,5 @@ void __init idprom_init(void)
 
 
 	display_system_type(idprom->id_machtype);
 	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);
 }
 }