diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2012-03-29 05:02:12 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2012-03-29 05:02:12 +0000 |
commit | 50d675f7a9fca2f3fba3a23ac41a8ae2c0162e4e (patch) | |
tree | bc9e037fdf2ed91d8f914cfe43bade2553a869c2 /share/man/man9/ieee80211_node.9 | |
parent | 3dce589cb969648ca460619cfe3f14b200663fbc (diff) |
Remove trailing whitespace per mdoc lint warning
Disussed with: gavin
No objection from: doc
Approved by: joel
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=233648
Diffstat (limited to 'share/man/man9/ieee80211_node.9')
-rw-r--r-- | share/man/man9/ieee80211_node.9 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/ieee80211_node.9 b/share/man/man9/ieee80211_node.9 index 180d8c4931a7..452bbcc19306 100644 --- a/share/man/man9/ieee80211_node.9 +++ b/share/man/man9/ieee80211_node.9 @@ -67,18 +67,18 @@ .Ft void .Fo ieee80211_dump_nodes .Fa "struct ieee80211_node_table *" -.Fc +.Fc .\" .Ft void .Fo ieee80211_dump_node .Fa "struct ieee80211_node *" -.Fc +.Fc .Sh DESCRIPTION The .Nm net80211 layer that supports 802.11 device drivers maintains a database of peer stations called the -.Dq node table +.Dq node table in the .Vt ic_sta entry of the @@ -125,7 +125,7 @@ field. This reference must be reclaimed by the driver when transmit processing is done. For each frame received the driver must lookup the table entry to -use in dispatching the frame +use in dispatching the frame .Dq up the stack . This lookup implicitly obtains a reference to the table entry and the driver must reclaim the reference when frame processing is completed. @@ -139,7 +139,7 @@ Entries may be looked up using one of the pre-defined API's or the .Fn ieee80211_iterate_nodes call may be used to iterate through all entries to do per-node processing or implement some non-standard search mechanism. -Note that +Note that .Fn ieee80211_iterate_nodes is single-threaded per-device and the effort processing involved is fairly @@ -206,7 +206,7 @@ iwi_node_free(struct ieee80211_node *ni) struct ieee80211com *ic = ni->ni_ic; struct iwi_softc *sc = ic->ic_ifp->if_softc; struct iwi_node *in = (struct iwi_node *)ni; - + if (in->in_station != -1) free_unr(sc->sc_unr, in->in_station); sc->sc_node_free(ni); /* invoke net80211 free handler */ |