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

Commit 23e12c89 authored by Sankar Patchineelam's avatar Sankar Patchineelam Committed by David S. Miller
Browse files

bnxt_en: Correct the order of arguments to netdev_err() in bnxt_set_tpa()

parent 2247925f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4744,7 +4744,7 @@ static int bnxt_set_tpa(struct bnxt *bp, bool set_tpa)
		rc = bnxt_hwrm_vnic_set_tpa(bp, i, tpa_flags);
		if (rc) {
			netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
				   rc, i);
				   i, rc);
			return rc;
		}
	}