2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-26 03:09:12 +00:00

[realtek] Print bad MAC address in debug message when inferring no EEPROM

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2013-04-27 21:24:10 +01:00
parent d91ccde9e5
commit 2e54c4b52e

View File

@ -1060,7 +1060,8 @@ static int realtek_probe ( struct pci_device *pci ) {
* hopefully have been programmed by the platform firmware.
*/
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++ )
netdev->hw_addr[i] = readb ( rtl->regs + RTL_IDR0 + i );
}