From a998286c8b5c73444314f4639d644f1772519c20 Mon Sep 17 00:00:00 2001 From: Marty Connor Date: Fri, 15 Sep 2006 12:42:43 +0000 Subject: [PATCH] change MAC address printout to DBG using eth_ntoa (temporary legacy support) --- src/drivers/net/eepro100.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/drivers/net/eepro100.c b/src/drivers/net/eepro100.c index 46346c71..829def52 100644 --- a/src/drivers/net/eepro100.c +++ b/src/drivers/net/eepro100.c @@ -105,6 +105,7 @@ #include "etherboot.h" #include "nic.h" +#include #include #include "timer.h" @@ -635,7 +636,8 @@ static int eepro100_probe ( struct nic *nic, struct pci_device *p ) { for (i=0;inode_addr[i] = (eeprom[i/2] >> (8*(i&1))) & 0xff; } - printf ("Ethernet addr: %!\n", nic->node_addr); + + DBG ("Ethernet addr: %s\n", eth_ntoa ( nic->node_addr ) ); if (sum != 0xBABA) printf("eepro100: Invalid EEPROM checksum %#hX, "