diff options
author | Marty Connor <mdc@etherboot.org> | 2006-09-14 14:06:33 +0000 |
---|---|---|
committer | Marty Connor <mdc@etherboot.org> | 2006-09-14 14:06:33 +0000 |
commit | 1ed6e69ea561cbf32749cad609d6bd928e6032f4 (patch) | |
tree | f4a1dcaacc5fc33e360777f68e95a2bb57e7e08a /src/drivers/net/tulip.c | |
parent | 4ef1ef0ee4c0e3c106ef8500de93d00cac5851bd (diff) | |
download | ipxe-1ed6e69ea561cbf32749cad609d6bd928e6032f4.tar.gz |
Remove printf of MAC address in driver.
Diffstat (limited to 'src/drivers/net/tulip.c')
-rw-r--r-- | src/drivers/net/tulip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/net/tulip.c b/src/drivers/net/tulip.c index 13a37443a..c81b68278 100644 --- a/src/drivers/net/tulip.c +++ b/src/drivers/net/tulip.c @@ -1403,7 +1403,9 @@ static int tulip_probe ( struct nic *nic, struct pci_device *pci ) { for (i = 0; i < ETH_ALEN; i++) last_phys_addr[i] = nic->node_addr[i]; +/* FIXME: This should be printed out in a higher-level routine. printf("%s: %! at ioaddr %hX\n", tp->nic_name, nic->node_addr, ioaddr); +*/ tp->chip_id = chip_idx; tp->revision = chip_rev; |