From: Marty Connor Date: Mon, 25 Sep 2006 02:47:50 +0000 (+0000) Subject: eth_ntoa and warnings fixups X-Git-Tag: v0.9.3~1022 X-Git-Url: http://git.etherboot.org/people/andreif/gpxe.git/commitdiff_plain/f4d0f2e5b516b2aef57494414734279e757366e6?hp=9e71390930cda012fb5c539b8d60b5814c1f57e6 eth_ntoa and warnings fixups --- diff --git a/src/drivers/net/forcedeth.c b/src/drivers/net/forcedeth.c index a60749c7..67f0c1ee 100644 --- a/src/drivers/net/forcedeth.c +++ b/src/drivers/net/forcedeth.c @@ -50,6 +50,7 @@ /* to get the PCI support functions, if this is a PCI NIC */ #include /* Include timer support functions */ +#include #include "timer.h" #include "mii.h" @@ -1304,7 +1305,8 @@ static int forcedeth_probe ( struct nic *nic, struct pci_device *pci ) { get_random_bytes(&dev->dev_addr[3], 3); } #endif - printf("%s: MAC Address %!, ", pci->name, nic->node_addr); + + DBG ( "%s: MAC Address %s\n", pci->name, eth_ntoa ( nic->node_addr ) ); /* disable WOL */ writel(0, base + NvRegWakeUpFlags);