diff options
author | Gordon Bergling <gbe@FreeBSD.org> | 2023-11-23 08:57:28 +0000 |
---|---|---|
committer | Gordon Bergling <gbe@FreeBSD.org> | 2023-11-26 07:53:44 +0000 |
commit | ab3a178eb120c28a4a161e94499560c68f4d4479 (patch) | |
tree | 84ee7ab821084114fcf2673dcf6e492c9e480705 | |
parent | 14dcb4cfe4052e36af7ec8588c1541cc3fedaf43 (diff) | |
download | src-ab3a178eb120c28a4a161e94499560c68f4d4479.tar.gz src-ab3a178eb120c28a4a161e94499560c68f4d4479.zip |
ath(4): Fix a typo in a source code comment
- s/mutiple/multiple/
(cherry picked from commit 4e36d081f377ecfa8375e5fe3d0763099f4a780d)
-rw-r--r-- | sys/dev/ath/if_ath_beacon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/if_ath_beacon.c b/sys/dev/ath/if_ath_beacon.c index f96f7691cf12..b08816f3d268 100644 --- a/sys/dev/ath/if_ath_beacon.c +++ b/sys/dev/ath/if_ath_beacon.c @@ -1014,7 +1014,7 @@ ath_beacon_config(struct ath_softc *sc, struct ieee80211vap *vap) * * The specification (802.11-2012 10.1.3.2 - Beacon Generation in * Infrastructure Networks) requires APs be beaconing at a - * mutiple of intval. So, if bintval=100, then we shouldn't + * multiple of intval. So, if bintval=100, then we shouldn't * get beacons at intervals other than around multiples of 100. */ if (nexttbtt == 0) /* e.g. for ap mode */ |