Commit da0dcab6 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

cmd_sfp: fix printing when SFP is matched

parent d46e38fb
...@@ -109,7 +109,7 @@ static int cmd_sfp(const char *args[]) ...@@ -109,7 +109,7 @@ static int cmd_sfp(const char *args[])
} }
/* match successful */ /* match successful */
pp_printf("SFP matched, dTx=%d dRx=%d alpha=%d\n", pp_printf("SFP matched, dTx=%d dRx=%d alpha=%d\n",
sfp.dTx, sfp.dRx, sfp.alpha); sfp_deltaTx, sfp_deltaRx, sfp_alpha);
return ret; return ret;
} else if (args[1] && !strcasecmp(args[0], "ena")) { } else if (args[1] && !strcasecmp(args[0], "ena")) {
ep_sfp_enable(atoi(args[1])); ep_sfp_enable(atoi(args[1]));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment