net: sfp: fix spelling mistake "requies" -> "requires"

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>
This commit is contained in:
Colin Ian King 2019-11-13 09:55:48 +00:00 committed by David S. Miller
parent f285604a6b
commit 07f23d9047

View File

@ -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;
}