summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2013-05-10 16:41:26 +0000
committereadler <eadler@FreeBSD.org>2013-05-10 16:41:26 +0000
commit4f9ab6c5808469c9ba3259a28f51ce27809db72d (patch)
treede55b90adb7094bbce6ffde362ffde2c0815186f
parent301528b1d3eaa9e833eb7096c798519ccd8b848a (diff)
downloadFreeBSD-src-4f9ab6c5808469c9ba3259a28f51ce27809db72d.zip
FreeBSD-src-4f9ab6c5808469c9ba3259a28f51ce27809db72d.tar.gz
Fxi a bunch of typos.
PR: misc/174625 Submitted by: Jeremy Chadwick <jdc@koitsu.org>
-rw-r--r--share/examples/ppi/ppilcd.c2
-rw-r--r--share/misc/pci_vendors2
-rw-r--r--sys/cam/ctl/scsi_ctl.c2
-rw-r--r--sys/cam/scsi/scsi_da.c4
-rw-r--r--sys/cam/scsi/scsi_pt.c4
-rw-r--r--sys/dev/aic7xxx/aic7xxx.h2
-rw-r--r--sys/dev/cp/if_cp.c2
-rw-r--r--sys/dev/ctau/if_ct.c2
-rw-r--r--sys/dev/cx/csigma.c2
-rw-r--r--sys/dev/cx/if_cx.c2
-rw-r--r--sys/dev/hptmv/entry.c6
-rw-r--r--sys/dev/isci/scil/scif_sas_domain.c4
-rw-r--r--sys/dev/nsp/nsp.c2
-rw-r--r--sys/dev/sfxge/common/efx_mcdi.c4
-rw-r--r--sys/dev/sn/if_sn.c2
-rw-r--r--sys/dev/stg/tmc18c30.c2
-rw-r--r--sys/kern/uipc_usrreq.c2
-rw-r--r--sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c2
-rw-r--r--sys/ofed/drivers/net/mlx4/eq.c2
-rw-r--r--usr.sbin/bluetooth/hccontrol/link_control.c2
-rw-r--r--usr.sbin/dumpcis/printcis.c2
21 files changed, 27 insertions, 27 deletions
diff --git a/share/examples/ppi/ppilcd.c b/share/examples/ppi/ppilcd.c
index fd2506d..17e2172 100644
--- a/share/examples/ppi/ppilcd.c
+++ b/share/examples/ppi/ppilcd.c
@@ -269,7 +269,7 @@ do_char(struct lcd_driver *driver, char ch)
* one of the ground pins (eg. pin 25).
*
* Note that the pinning on some LCD modules has the odd and even pins
- * arranged as though reversed; check carefully before conecting a module
+ * arranged as though reversed; check carefully before connecting a module
* as it is possible to toast the HD44780 if the power is reversed.
*/
diff --git a/share/misc/pci_vendors b/share/misc/pci_vendors
index 921f402..ca35435 100644
--- a/share/misc/pci_vendors
+++ b/share/misc/pci_vendors
@@ -11402,7 +11402,7 @@
0040 QSC-200/300
0050 ESC-100D
0060 ESC-100M
- 00f0 MPAC-100 Syncronous Serial Card (Zilog 85230)
+ 00f0 MPAC-100 Synchronous Serial Card (Zilog 85230)
0170 QSCLP-100
0180 DSCLP-100
0190 SSCLP-100
diff --git a/sys/cam/ctl/scsi_ctl.c b/sys/cam/ctl/scsi_ctl.c
index 3fcd409..97200ca 100644
--- a/sys/cam/ctl/scsi_ctl.c
+++ b/sys/cam/ctl/scsi_ctl.c
@@ -2137,7 +2137,7 @@ ctlfe_dump_queue(struct ctlfe_lun_softc *softc)
xpt_print(periph->path, "%d requests total waiting for CCBs\n",
num_items);
- xpt_print(periph->path, "%ju CCBs oustanding (%ju allocated, %ju "
+ xpt_print(periph->path, "%ju CCBs outstanding (%ju allocated, %ju "
"freed)\n", (uintmax_t)(softc->ccbs_alloced -
softc->ccbs_freed), (uintmax_t)softc->ccbs_alloced,
(uintmax_t)softc->ccbs_freed);
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index 59964fb..51d30db 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -2328,7 +2328,7 @@ skipstate:
out:
/*
- * Block out any asyncronous callbacks
+ * Block out any asynchronous callbacks
* while we touch the pending ccb list.
*/
LIST_INSERT_HEAD(&softc->pending_ccbs,
@@ -2729,7 +2729,7 @@ dadone(struct cam_periph *periph, union ccb *done_ccb)
}
/*
- * Block out any asyncronous callbacks
+ * Block out any asynchronous callbacks
* while we touch the pending ccb list.
*/
LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
diff --git a/sys/cam/scsi/scsi_pt.c b/sys/cam/scsi/scsi_pt.c
index 826afb3..b30fbbf 100644
--- a/sys/cam/scsi/scsi_pt.c
+++ b/sys/cam/scsi/scsi_pt.c
@@ -455,7 +455,7 @@ ptstart(struct cam_periph *periph, union ccb *start_ccb)
start_ccb->ccb_h.ccb_state = PT_CCB_BUFFER_IO_UA;
/*
- * Block out any asyncronous callbacks
+ * Block out any asynchronous callbacks
* while we touch the pending ccb list.
*/
LIST_INSERT_HEAD(&softc->pending_ccbs, &start_ccb->ccb_h,
@@ -549,7 +549,7 @@ ptdone(struct cam_periph *periph, union ccb *done_ccb)
}
/*
- * Block out any asyncronous callbacks
+ * Block out any asynchronous callbacks
* while we touch the pending ccb list.
*/
LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
diff --git a/sys/dev/aic7xxx/aic7xxx.h b/sys/dev/aic7xxx/aic7xxx.h
index 77acfe4..3eefb57 100644
--- a/sys/dev/aic7xxx/aic7xxx.h
+++ b/sys/dev/aic7xxx/aic7xxx.h
@@ -768,7 +768,7 @@ struct ahc_syncrate {
#define AHC_ULTRA2_XFER_PERIOD 0x0a
/*
- * Indexes into our table of syncronous transfer rates.
+ * Indexes into our table of synchronous transfer rates.
*/
#define AHC_SYNCRATE_DT 0
#define AHC_SYNCRATE_ULTRA2 1
diff --git a/sys/dev/cp/if_cp.c b/sys/dev/cp/if_cp.c
index 299a51c..e5f86b1 100644
--- a/sys/dev/cp/if_cp.c
+++ b/sys/dev/cp/if_cp.c
@@ -1,7 +1,7 @@
/*-
* Cronyx-Tau-PCI adapter driver for FreeBSD.
* Supports PPP/HDLC, Cisco/HDLC and FrameRelay protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
* Keepalive protocol implemented in both Cisco and PPP modes.
*
* Copyright (C) 1999-2004 Cronyx Engineering.
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c
index fc3e916..4956e4e 100644
--- a/sys/dev/ctau/if_ct.c
+++ b/sys/dev/ctau/if_ct.c
@@ -1,7 +1,7 @@
/*-
* Cronyx-Tau adapter driver for FreeBSD.
* Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
* Keepalive protocol implemented in both Cisco and PPP modes.
*
* Copyright (C) 1994-2002 Cronyx Engineering.
diff --git a/sys/dev/cx/csigma.c b/sys/dev/cx/csigma.c
index e880b88..7be2239 100644
--- a/sys/dev/cx/csigma.c
+++ b/sys/dev/cx/csigma.c
@@ -1168,7 +1168,7 @@ void cx_set_dtr (cx_chan_t *c, int on)
switch (c->num) {
default:
- /* Channels 4..7 and 12..15 in syncronous mode
+ /* Channels 4..7 and 12..15 in synchronous mode
* have no DTR signal. */
break;
diff --git a/sys/dev/cx/if_cx.c b/sys/dev/cx/if_cx.c
index ad8312c..2abc453 100644
--- a/sys/dev/cx/if_cx.c
+++ b/sys/dev/cx/if_cx.c
@@ -1,7 +1,7 @@
/*-
* Cronyx-Sigma adapter driver for FreeBSD.
* Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode,
- * and asyncronous channels with full modem control.
+ * and asynchronous channels with full modem control.
* Keepalive protocol implemented in both Cisco and PPP modes.
*
* Copyright (C) 1994-2002 Cronyx Engineering.
diff --git a/sys/dev/hptmv/entry.c b/sys/dev/hptmv/entry.c
index cdc3e18..80f5130 100644
--- a/sys/dev/hptmv/entry.c
+++ b/sys/dev/hptmv/entry.c
@@ -914,8 +914,8 @@ hptmv_event_notify(MV_SATA_ADAPTER *pMvSataAdapter, MV_EVENT_TYPE eventType,
else
{
- MV_ERROR("RR18xx: illigal value for param1(%d) at "
- "connect/disconect event, host=%d\n", param1,
+ MV_ERROR("RR18xx: illegal value for param1(%d) at "
+ "connect/disconnect event, host=%d\n", param1,
pMvSataAdapter->adapterId );
}
@@ -983,7 +983,7 @@ hptmv_allocate_edma_queues(IAL_ADAPTER_T *pAdapter)
if ((pAdapter->responsesArrayBaseDmaAlignedAddr - pAdapter->responsesArrayBaseDmaAddr) !=
(pAdapter->responsesArrayBaseAlignedAddr - pAdapter->responsesArrayBaseAddr))
{
- MV_ERROR("RR18xx[%d]: Error in Response Quueues Alignment\n",
+ MV_ERROR("RR18xx[%d]: Error in Response Queues Alignment\n",
pAdapter->mvSataAdapter.adapterId);
contigfree(pAdapter->requestsArrayBaseAddr, REQUESTS_ARRAY_SIZE, M_DEVBUF);
contigfree(pAdapter->responsesArrayBaseAddr, RESPONSES_ARRAY_SIZE, M_DEVBUF);
diff --git a/sys/dev/isci/scil/scif_sas_domain.c b/sys/dev/isci/scil/scif_sas_domain.c
index 4907710..8261e55 100644
--- a/sys/dev/isci/scil/scif_sas_domain.c
+++ b/sys/dev/isci/scil/scif_sas_domain.c
@@ -637,7 +637,7 @@ void scif_sas_domain_terminate_requests(
SCIF_SAS_REQUEST_T * request = NULL;
// Cycle through the fast list of IO requests. Terminate each
- // oustanding requests that matches the criteria supplied by the
+ // outstanding requests that matches the criteria supplied by the
// caller.
while (element != NULL)
{
@@ -1275,7 +1275,7 @@ U8 scif_sas_domain_get_smp_request_count(
SCIC_TRANSPORT_PROTOCOL protocol;
// Cycle through the fast list of IO requests. Terminate each
- // oustanding requests that matches the criteria supplied by the
+ // outstanding requests that matches the criteria supplied by the
// caller.
while (element != NULL)
{
diff --git a/sys/dev/nsp/nsp.c b/sys/dev/nsp/nsp.c
index 3870d9b..dae2bd6 100644
--- a/sys/dev/nsp/nsp.c
+++ b/sys/dev/nsp/nsp.c
@@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$");
***************************************************/
/* DEVICE CONFIGURATION FLAGS (MINOR)
*
- * 0x01 DISCONECT OFF
+ * 0x01 DISCONNECT OFF
* 0x02 PARITY LINE OFF
* 0x04 IDENTIFY MSG OFF ( = single lun)
* 0x08 SYNC TRANSFER OFF
diff --git a/sys/dev/sfxge/common/efx_mcdi.c b/sys/dev/sfxge/common/efx_mcdi.c
index 20c5bc6..55297c0 100644
--- a/sys/dev/sfxge/common/efx_mcdi.c
+++ b/sys/dev/sfxge/common/efx_mcdi.c
@@ -86,7 +86,7 @@ efx_mcdi_request_start(
/*
* efx_mcdi_request_start() is naturally serialised against both
* efx_mcdi_request_poll() and efx_mcdi_ev_cpl()/efx_mcdi_ev_death(),
- * by virtue of there only being one oustanding MCDI request.
+ * by virtue of there only being one outstanding MCDI request.
* Unfortunately, upper layers may also call efx_mcdi_request_abort()
* at any time, to timeout a pending mcdi request, That request may
* then subsequently complete, meaning efx_mcdi_ev_cpl() or
@@ -439,7 +439,7 @@ efx_mcdi_ev_death(
* The MCDI request (if there is one) has been terminated, either
* by a BADASSERT or REBOOT event.
*
- * If there is an oustanding event-completed MCDI operation, then we
+ * If there is an outstanding event-completed MCDI operation, then we
* will never receive the completion event (because both MCDI
* completions and BADASSERT events are sent to the same evq). So
* complete this MCDI op.
diff --git a/sys/dev/sn/if_sn.c b/sys/dev/sn/if_sn.c
index d7cc20d..fc26d23 100644
--- a/sys/dev/sn/if_sn.c
+++ b/sys/dev/sn/if_sn.c
@@ -443,7 +443,7 @@ startagain:
/*
* Wait a short amount of time to see if the allocation request
* completes. Otherwise, I enable the interrupt and wait for
- * completion asyncronously.
+ * completion asynchronously.
*/
time_out = MEMORY_WAIT_TIME;
diff --git a/sys/dev/stg/tmc18c30.c b/sys/dev/stg/tmc18c30.c
index 336f81f..26e6a20 100644
--- a/sys/dev/stg/tmc18c30.c
+++ b/sys/dev/stg/tmc18c30.c
@@ -62,7 +62,7 @@ __FBSDID("$FreeBSD$");
***************************************************/
/* DEVICE CONFIGURATION FLAGS (MINOR)
*
- * 0x01 DISCONECT OFF
+ * 0x01 DISCONNECT OFF
* 0x02 PARITY LINE OFF
* 0x04 IDENTIFY MSG OFF ( = single lun)
* 0x08 SYNC TRANSFER OFF
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c
index 011c3ee..33e72e9 100644
--- a/sys/kern/uipc_usrreq.c
+++ b/sys/kern/uipc_usrreq.c
@@ -1370,7 +1370,7 @@ unp_connectat(int fd, struct socket *so, struct sockaddr *nam,
}
/*
- * The connecter's (client's) credentials are copied from its
+ * The connector's (client's) credentials are copied from its
* process structure at the time of connect() (which is now).
*/
cru2x(td->td_ucred, &unp3->unp_peercred);
diff --git a/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c b/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
index 60bfd45..db667b9 100644
--- a/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
+++ b/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
@@ -306,7 +306,7 @@ ng_l2cap_con_fail(ng_l2cap_con_p con, u_int16_t result)
/*
* There still might be channels (in OPEN state?) that
- * did not submit any commands, so diconnect them
+ * did not submit any commands, so disconnect them
*/
LIST_FOREACH(ch, &l2cap->chan_list, next)
diff --git a/sys/ofed/drivers/net/mlx4/eq.c b/sys/ofed/drivers/net/mlx4/eq.c
index 42885c7..3dd96e6 100644
--- a/sys/ofed/drivers/net/mlx4/eq.c
+++ b/sys/ofed/drivers/net/mlx4/eq.c
@@ -705,7 +705,7 @@ int mlx4_test_interrupts(struct mlx4_dev *dev)
/* Temporary use polling for command completions */
mlx4_cmd_use_polling(dev);
- /* Map the new eq to handle all asyncronous events */
+ /* Map the new eq to handle all asynchronous events */
err = mlx4_MAP_EQ(dev, MLX4_ASYNC_EVENT_MASK, 0,
priv->eq_table.eq[i].eqn);
if (err) {
diff --git a/usr.sbin/bluetooth/hccontrol/link_control.c b/usr.sbin/bluetooth/hccontrol/link_control.c
index ea880cd..536520a 100644
--- a/usr.sbin/bluetooth/hccontrol/link_control.c
+++ b/usr.sbin/bluetooth/hccontrol/link_control.c
@@ -357,7 +357,7 @@ again:
goto again;
return (OK);
-} /* hci_diconnect */
+} /* hci_disconnect */
/* Send Add_SCO_Connection command to the unit */
static int
diff --git a/usr.sbin/dumpcis/printcis.c b/usr.sbin/dumpcis/printcis.c
index 74221e8..ff2ac90 100644
--- a/usr.sbin/dumpcis/printcis.c
+++ b/usr.sbin/dumpcis/printcis.c
@@ -969,7 +969,7 @@ dump_network_ext(u_char *p, int len)
printf(" %02x", p[i + 2]);
putchar('\n');
break;
- case 5: /* Connecter type */
+ case 5: /* Connector type */
if (len < 2)
goto err;
printf("\tNetwork connector: %s connector standard\n",
OpenPOWER on IntegriCloud