mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: sb/nvidia/mcp55: Fix typo in nic.c
The comparison value was obviously wrong here. One too many 'f'
characters.
BUG=none
BRANCH=none
TEST=none
Change-Id: I882e7db9c9d47b413ec2838256ac844bb2840dd6
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: eec3402339
Original-Found-by: Coverity Scan #1229588 & 1229604
Original-Change-Id: Iedd4f956d846f1c8661390b346c7397346def86b
Original-Signed-off-by: Martin Roth <martinroth@google.com>
Original-Reviewed-on: https://review.coreboot.org/18100
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Original-Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://chromium-review.googlesource.com/428263
Commit-Ready: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
2f2fa5467d
commit
79e667a3e5
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ static void phy_detect(u8 *base)
|
|||
val = phy_read(base, phyaddr, 1);
|
||||
if (val < 0)
|
||||
continue;
|
||||
if ((val & 0xffff) == 0xfffff)
|
||||
if ((val & 0xffff) == 0xffff)
|
||||
continue;
|
||||
if ((val & 0xffff) == 0)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue