aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netgraph')
-rw-r--r--sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c4
-rw-r--r--sys/netgraph/ng_base.c2
-rw-r--r--sys/netgraph/ng_socket.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
index 00bd6637665a..603d72228bb6 100644
--- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
+++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
@@ -1355,7 +1355,7 @@ ubt_isoc_in_start(ubt_softc_p sc)
usbd_status status;
int i;
- /* Initialize a isoc-in USB transfer and then schedule it */
+ /* Initialize an isoc-in USB transfer and then schedule it. */
for (i = 0; i < sc->sc_isoc_nframes; i++)
sc->sc_isoc_in_frlen[i] = sc->sc_isoc_size;
@@ -1576,7 +1576,7 @@ ubt_isoc_out_start(ubt_softc_p sc, struct mbuf *m)
NG_FREE_M(m);
- /* Initialize a isoc-out USB transfer and then schedule it */
+ /* Initialize an isoc-out USB transfer and then schedule it. */
usbd_setup_isoc_xfer(
sc->sc_isoc_out_xfer,
diff --git a/sys/netgraph/ng_base.c b/sys/netgraph/ng_base.c
index 3956b9338503..eb5a8eb9e112 100644
--- a/sys/netgraph/ng_base.c
+++ b/sys/netgraph/ng_base.c
@@ -885,7 +885,7 @@ ng_name2noderef(node_p here, const char *name)
}
/*
- * Decode a ID name, eg. "[f03034de]". Returns 0 if the
+ * Decode an ID name, eg. "[f03034de]". Returns 0 if the
* string is not valid, otherwise returns the value.
*/
static ng_ID_t
diff --git a/sys/netgraph/ng_socket.c b/sys/netgraph/ng_socket.c
index 357c2a924acc..d5f24b8168de 100644
--- a/sys/netgraph/ng_socket.c
+++ b/sys/netgraph/ng_socket.c
@@ -562,7 +562,7 @@ ng_detach_common(struct ngpcb *pcbp, int which)
#ifdef NOTYET
/*
- * File descriptors can be passed into a AF_NETGRAPH socket.
+ * File descriptors can be passed into an AF_NETGRAPH socket.
* Note, that file descriptors cannot be passed OUT.
* Only character device descriptors are accepted.
* Character devices are useful to connect a graph to a device,
@@ -597,7 +597,7 @@ ng_internalize(struct mbuf *control, struct thread *td)
return (error);
/* Depending on what kind of resource it is, act differently. For
- * devices, we treat it as a file. For a AF_NETGRAPH socket,
+ * devices, we treat it as a file. For an AF_NETGRAPH socket,
* shortcut straight to the node. */
switch (fp->f_type) {
case DTYPE_VNODE: