summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/bluetooth/socket
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-29 21:25:05 +0000
committerpfg <pfg@FreeBSD.org>2016-04-29 21:25:05 +0000
commit79a1fafeb42e583ed21b9d628a7f5843af2363c6 (patch)
treea105ac679aa23495f95998203cdb54c8ba79d19b /sys/netgraph/bluetooth/socket
parentd3b6c9c90faa979f0fbec505c7207a8414476c8d (diff)
downloadFreeBSD-src-79a1fafeb42e583ed21b9d628a7f5843af2363c6.zip
FreeBSD-src-79a1fafeb42e583ed21b9d628a7f5843af2363c6.tar.gz
sys/netgraph: spelling fixes in comments.
No functional change.
Diffstat (limited to 'sys/netgraph/bluetooth/socket')
-rw-r--r--sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c6
-rw-r--r--sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c4
-rw-r--r--sys/netgraph/bluetooth/socket/ng_btsocket_sco.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c b/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
index 57628b0..7653263 100644
--- a/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
+++ b/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
@@ -2076,7 +2076,7 @@ ng_btsocket_l2cap_attach(struct socket *so, int proto, struct thread *td)
* This is totally FUBAR. We could get here in two cases:
*
* 1) When user calls socket()
- * 2) When we need to accept new incomming connection and call
+ * 2) When we need to accept new incoming connection and call
* sonewconn()
*
* In the first case we must acquire ng_btsocket_l2cap_sockets_mtx.
@@ -2610,7 +2610,7 @@ ng_btsocket_l2cap_send(struct socket *so, int flags, struct mbuf *m,
goto drop;
}
- /* Check packet size agains outgoing (peer's incoming) MTU) */
+ /* Check packet size against outgoing (peer's incoming) MTU) */
if (m->m_pkthdr.len > pcb->omtu) {
NG_BTSOCKET_L2CAP_ERR(
"%s: Packet too big, len=%d, omtu=%d\n", __func__, m->m_pkthdr.len, pcb->omtu);
@@ -2690,7 +2690,7 @@ ng_btsocket_l2cap_send2(ng_btsocket_l2cap_pcb_p pcb)
hdr->token, pcb->state);
/*
- * If we got here than we have successfuly creates new L2CAP
+ * If we got here than we have successfully creates new L2CAP
* data packet and now we can send it to the L2CAP layer
*/
diff --git a/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c b/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
index 68c5975..704088a 100644
--- a/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
+++ b/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
@@ -1475,7 +1475,7 @@ ng_btsocket_rfcomm_session_accept(ng_btsocket_rfcomm_session_p s0)
s->state = NG_BTSOCKET_RFCOMM_SESSION_CONNECTED;
/*
- * Adjust MTU on incomming connection. Reserve 5 bytes:
+ * Adjust MTU on incoming connection. Reserve 5 bytes:
* RFCOMM frame header, one extra byte for length and
* one extra byte for credits.
*/
@@ -2881,7 +2881,7 @@ ng_btsocket_rfcomm_receive_pn(ng_btsocket_rfcomm_session_p s, struct mbuf *m0)
mtx_unlock(&pcb->pcb_mtx);
} else if (RFCOMM_CR(hdr->type)) {
- /* PN request to non-existing dlci - incomming connection */
+ /* PN request to non-existing dlci - incoming connection */
pcb = ng_btsocket_rfcomm_connect_ind(s,
RFCOMM_SRVCHANNEL(pn->dlci));
if (pcb != NULL) {
diff --git a/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c b/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
index 9ff0ceb..1398599 100644
--- a/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
+++ b/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c
@@ -1261,10 +1261,10 @@ ng_btsocket_sco_attach(struct socket *so, int proto, struct thread *td)
* This is totally FUBAR. We could get here in two cases:
*
* 1) When user calls socket()
- * 2) When we need to accept new incomming connection and call
+ * 2) When we need to accept new incoming connection and call
* sonewconn()
*
- * In the first case we must aquire ng_btsocket_sco_sockets_mtx.
+ * In the first case we must acquire ng_btsocket_sco_sockets_mtx.
* In the second case we hold ng_btsocket_sco_sockets_mtx already.
* So we now need to distinguish between these cases. From reading
* /sys/kern/uipc_socket2.c we can find out that sonewconn() calls
OpenPOWER on IntegriCloud