Skip to content

Commit

Permalink
net: sfp: fix spelling mistake "requies" -> "requires"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a dev_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Colin Ian King authored and David S. Miller committed Nov 13, 2019
1 parent f285604 commit 07f23d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/phy/sfp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1465,7 +1465,7 @@ static int sfp_module_parse_power(struct sfp *sfp)
*/
if (sfp->id.ext.diagmon & SFP_DIAGMON_ADDRMODE && power_mW > 1000) {
dev_warn(sfp->dev,
"Address Change Sequence not supported but module requies %u.%uW, module may not be functional\n",
"Address Change Sequence not supported but module requires %u.%uW, module may not be functional\n",
power_mW / 1000, (power_mW / 100) % 10);
return 0;
}
Expand Down

0 comments on commit 07f23d9

Please sign in to comment.