mirror of https://github.com/ipxe/ipxe.git
[realtek] Print bad MAC address in debug message when inferring no EEPROM
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/13/head
parent
d91ccde9e5
commit
2e54c4b52e
|
@ -1060,7 +1060,8 @@ static int realtek_probe ( struct pci_device *pci ) {
|
||||||
* hopefully have been programmed by the platform firmware.
|
* hopefully have been programmed by the platform firmware.
|
||||||
*/
|
*/
|
||||||
if ( ! is_valid_ether_addr ( netdev->hw_addr ) ) {
|
if ( ! is_valid_ether_addr ( netdev->hw_addr ) ) {
|
||||||
DBGC ( rtl, "REALTEK %p seems to have no EEPROM\n", rtl );
|
DBGC ( rtl, "REALTEK %p seems to have no EEPROM (MAC %s)\n",
|
||||||
|
rtl, eth_ntoa ( netdev->hw_addr ) );
|
||||||
for ( i = 0 ; i < ETH_ALEN ; i++ )
|
for ( i = 0 ; i < ETH_ALEN ; i++ )
|
||||||
netdev->hw_addr[i] = readb ( rtl->regs + RTL_IDR0 + i );
|
netdev->hw_addr[i] = readb ( rtl->regs + RTL_IDR0 + i );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue