summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/eepro100.c
diff options
context:
space:
mode:
authorMarty Connor2006-09-25 04:18:11 +0200
committerMarty Connor2006-09-25 04:18:11 +0200
commit447ed775255dcc271b1c7f2236f1be094a12ba2e (patch)
treece080ddb2df2e6fe2e16478dbf3da8d7af6311c6 /src/drivers/net/eepro100.c
parenteth_ntoa and warnings fixups (diff)
downloadipxe-447ed775255dcc271b1c7f2236f1be094a12ba2e.tar.gz
ipxe-447ed775255dcc271b1c7f2236f1be094a12ba2e.tar.xz
ipxe-447ed775255dcc271b1c7f2236f1be094a12ba2e.zip
eth_ntoa and warnings fixups
Diffstat (limited to 'src/drivers/net/eepro100.c')
-rw-r--r--src/drivers/net/eepro100.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/eepro100.c b/src/drivers/net/eepro100.c
index 829def52..f7d888cd 100644
--- a/src/drivers/net/eepro100.c
+++ b/src/drivers/net/eepro100.c
@@ -637,7 +637,7 @@ static int eepro100_probe ( struct nic *nic, struct pci_device *p ) {
nic->node_addr[i] = (eeprom[i/2] >> (8*(i&1))) & 0xff;
}
- DBG ("Ethernet addr: %s\n", eth_ntoa ( nic->node_addr ) );
+ DBG ( "Ethernet addr: %s\n", eth_ntoa ( nic->node_addr ) );
if (sum != 0xBABA)
printf("eepro100: Invalid EEPROM checksum %#hX, "