From 9ebd651b58502f0572a7832d088f53f7a2ad00a5 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sat, 2 Oct 2021 10:42:18 +0200 Subject: [PATCH] netvsc: Fix a typo in a comment - s/prefered/preferred/ MFC after: 3 days --- sys/dev/hyperv/netvsc/hn_rndis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/hyperv/netvsc/hn_rndis.c b/sys/dev/hyperv/netvsc/hn_rndis.c index 794a82cf395..108950aa3f9 100644 --- a/sys/dev/hyperv/netvsc/hn_rndis.c +++ b/sys/dev/hyperv/netvsc/hn_rndis.c @@ -493,7 +493,7 @@ hn_rndis_query_rsscaps(struct hn_softc *sc, int *rxr_cnt0) /* * NOTE: - * Toeplitz is at the lowest bit, and it is prefered; so ffs(), + * Toeplitz is at the lowest bit, and it is preferred; so ffs(), * instead of fls(), is used here. */ hash_fnidx = ffs(caps.ndis_caps & NDIS_RSS_CAP_HASHFUNC_MASK);