Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22afe2cf authored by Czeslaw Zagorski's avatar Czeslaw Zagorski Committed by Jeff Kirsher
Browse files

i40e: Fix message for other card without FEC.



When variable "req_fec, fec, an" are empty,
dmesg shows log with "Requested FEC: , Negotiated FEC: , Autoneg:".
Add link dmesg log for cards without FEC.

Signed-off-by: default avatarCzeslaw Zagorski <czeslawx.zagorski@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 3fc9d8e1
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -6594,11 +6594,15 @@ void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
			else
				req_fec = "CL74 FC-FEC/BASE-R";
		}
	}

		netdev_info(vsi->netdev,
			    "NIC Link is Up, %sbps Full Duplex, Requested FEC: %s, Negotiated FEC: %s, Autoneg: %s, Flow Control: %s\n",
			    speed, req_fec, fec, an, fc);
	} else {
		netdev_info(vsi->netdev,
			    "NIC Link is Up, %sbps Full Duplex, Flow Control: %s\n",
			    speed, fc);
	}

}

/**