diff options
-rw-r--r-- | lib/msun/src/k_rem_pio2.c | 2 | ||||
-rw-r--r-- | secure/usr.bin/bdes/bdes.1 | 2 | ||||
-rw-r--r-- | sys/arm/lpc/lpc_gpio.c | 2 | ||||
-rw-r--r-- | sys/dev/bktr/bktr_audio.c | 2 | ||||
-rw-r--r-- | sys/dev/nxge/xgehal/xgehal-device.c | 2 | ||||
-rw-r--r-- | sys/dev/sound/pci/emu10kx.c | 2 | ||||
-rw-r--r-- | sys/kern/tty.c | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_output.c | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/lib/msun/src/k_rem_pio2.c b/lib/msun/src/k_rem_pio2.c index a2ffca6..3942441 100644 --- a/lib/msun/src/k_rem_pio2.c +++ b/lib/msun/src/k_rem_pio2.c @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); * z = (z-x[i])*2**24 * * - * y[] ouput result in an array of double precision numbers. + * y[] output result in an array of double precision numbers. * The dimension of y[] is: * 24-bit precision 1 * 53-bit precision 2 diff --git a/secure/usr.bin/bdes/bdes.1 b/secure/usr.bin/bdes/bdes.1 index 367d32d..8863a84 100644 --- a/secure/usr.bin/bdes/bdes.1 +++ b/secure/usr.bin/bdes/bdes.1 @@ -141,7 +141,7 @@ or in CFB mode. .It Fl o Ar N Use .Ar N Ns \-bit -ouput feedback (OFB) mode. +output feedback (OFB) mode. Currently .Ar N must be a multiple of 8 between 8 and 64 inclusive (this does not conform diff --git a/sys/arm/lpc/lpc_gpio.c b/sys/arm/lpc/lpc_gpio.c index 4c06302..a7ef028 100644 --- a/sys/arm/lpc/lpc_gpio.c +++ b/sys/arm/lpc/lpc_gpio.c @@ -33,7 +33,7 @@ * - Port3 with: * - 26 input pins (GPI_00..GPI_09 + GPI_15..GPI_23 + GPI_25 + GPI_27..GPI_28) * - 24 output pins (GPO_00..GPO_23) - * - 6 input/ouput pins (GPIO_00..GPIO_05) + * - 6 input/output pins (GPIO_00..GPIO_05) * * Pins are mapped to logical pin number as follows: * [0..9] -> GPI_00..GPI_09 (port 3) diff --git a/sys/dev/bktr/bktr_audio.c b/sys/dev/bktr/bktr_audio.c index efc63da..6cfe576 100644 --- a/sys/dev/bktr/bktr_audio.c +++ b/sys/dev/bktr/bktr_audio.c @@ -498,7 +498,7 @@ void msp_autodetect( bktr_ptr_t bktr ) { } - /* MSP3415D SPECIAL CASE Use the Tuner's Mono audio ouput for the MSP */ + /* MSP3415D SPECIAL CASE Use the Tuner's Mono audio output for the MSP */ /* (for Hauppauge 44xxx card with Tuner Type 0x2a) */ else if ( ( (strncmp("3415D", bktr->msp_version_string, 5) == 0) &&(bktr->msp_use_mono_source == 1) diff --git a/sys/dev/nxge/xgehal/xgehal-device.c b/sys/dev/nxge/xgehal/xgehal-device.c index 43f944a..2f52a7e 100644 --- a/sys/dev/nxge/xgehal/xgehal-device.c +++ b/sys/dev/nxge/xgehal/xgehal-device.c @@ -6793,7 +6793,7 @@ _again: } else { /* * Logging Error messages in the excess temperature, - * Bias current, laser ouput for three cycle + * Bias current, laser output for three cycle */ __hal_updt_stats_xpak(hldev); hldev->stats.sw_dev_err_stats.xpak_counter.tick_period = 0; diff --git a/sys/dev/sound/pci/emu10kx.c b/sys/dev/sound/pci/emu10kx.c index c15a03b..5f217c1 100644 --- a/sys/dev/sound/pci/emu10kx.c +++ b/sys/dev/sound/pci/emu10kx.c @@ -3168,7 +3168,7 @@ emu_pci_attach(device_t dev) sc->output_base = 0x20; /* * XXX 5.1 Analog outputs are inside efxc address space! - * They use ouput+0x11/+0x12 (=efxc+1/+2). + * They use output+0x11/+0x12 (=efxc+1/+2). * Don't use this efx registers for recording on SB Live! 5.1! */ sc->efxc_base = 0x30; diff --git a/sys/kern/tty.c b/sys/kern/tty.c index e6d0d80..5c7b753 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -114,7 +114,7 @@ tty_watermarks(struct tty *tp) /* Set low watermark at 10% (when 90% is available). */ tp->t_inlow = (ttyinq_getallocatedsize(&tp->t_inq) * 9) / 10; - /* Provide an ouput buffer for 0.2 seconds of data. */ + /* Provide an output buffer for 0.2 seconds of data. */ bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX); ttyoutq_setsize(&tp->t_outq, tp, bs); diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index d367674..b050fcf 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -127,7 +127,7 @@ static void inline hhook_run_tcp_est_out(struct tcpcb *tp, static void inline cc_after_idle(struct tcpcb *tp); /* - * Wrapper for the TCP established ouput helper hook. + * Wrapper for the TCP established output helper hook. */ static void inline hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, |