diff options
Diffstat (limited to 'src/mainboard/google/jecht/lan.c')
-rw-r--r-- | src/mainboard/google/jecht/lan.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/jecht/lan.c b/src/mainboard/google/jecht/lan.c index a431393b00..1f90aa7ccf 100644 --- a/src/mainboard/google/jecht/lan.c +++ b/src/mainboard/google/jecht/lan.c @@ -36,8 +36,7 @@ static unsigned char get_hex_digit(u8 *offset) retval = *offset - 'a' + 0x0a; } if (retval > 0x0F) { - printk(BIOS_DEBUG, "Error: Invalid Hex digit found: %c - 0x%02x\n", - *offset, *offset); + printk(BIOS_ERR, "Invalid Hex digit found: %c - 0x%02x\n", *offset, *offset); retval = 0; } @@ -53,8 +52,7 @@ static int get_mac_address(u32 *high_dword, u32 *low_dword, offset = search(key, search_address, sizeof(key) - 1, search_length); if (offset == search_length) { - printk(BIOS_DEBUG, - "Error: Could not locate '%s' in VPD\n", key); + printk(BIOS_ERR, "Could not locate '%s' in VPD\n", key); return 0; } printk(BIOS_DEBUG, "Located '%s' in VPD\n", key); |