Fix typo; s/ouput/output

This commit is contained in:
Kevin Lo 2012-11-07 07:00:59 +00:00
parent d92303b62c
commit 0f5e7edc14
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242692
8 changed files with 8 additions and 8 deletions

View File

@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$");
* z = (z-x[i])*2**24 * 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: * The dimension of y[] is:
* 24-bit precision 1 * 24-bit precision 1
* 53-bit precision 2 * 53-bit precision 2

View File

@ -141,7 +141,7 @@ or in CFB mode.
.It Fl o Ar N .It Fl o Ar N
Use Use
.Ar N Ns \-bit .Ar N Ns \-bit
ouput feedback (OFB) mode. output feedback (OFB) mode.
Currently Currently
.Ar N .Ar N
must be a multiple of 8 between 8 and 64 inclusive (this does not conform must be a multiple of 8 between 8 and 64 inclusive (this does not conform

View File

@ -33,7 +33,7 @@
* - Port3 with: * - Port3 with:
* - 26 input pins (GPI_00..GPI_09 + GPI_15..GPI_23 + GPI_25 + GPI_27..GPI_28) * - 26 input pins (GPI_00..GPI_09 + GPI_15..GPI_23 + GPI_25 + GPI_27..GPI_28)
* - 24 output pins (GPO_00..GPO_23) * - 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: * Pins are mapped to logical pin number as follows:
* [0..9] -> GPI_00..GPI_09 (port 3) * [0..9] -> GPI_00..GPI_09 (port 3)

View File

@ -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) */ /* (for Hauppauge 44xxx card with Tuner Type 0x2a) */
else if ( ( (strncmp("3415D", bktr->msp_version_string, 5) == 0) else if ( ( (strncmp("3415D", bktr->msp_version_string, 5) == 0)
&&(bktr->msp_use_mono_source == 1) &&(bktr->msp_use_mono_source == 1)

View File

@ -6793,7 +6793,7 @@ xge_hal_device_poll(xge_hal_device_h devh)
} else { } else {
/* /*
* Logging Error messages in the excess temperature, * 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); __hal_updt_stats_xpak(hldev);
hldev->stats.sw_dev_err_stats.xpak_counter.tick_period = 0; hldev->stats.sw_dev_err_stats.xpak_counter.tick_period = 0;

View File

@ -3168,7 +3168,7 @@ emu_pci_attach(device_t dev)
sc->output_base = 0x20; sc->output_base = 0x20;
/* /*
* XXX 5.1 Analog outputs are inside efxc address space! * 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! * Don't use this efx registers for recording on SB Live! 5.1!
*/ */
sc->efxc_base = 0x30; sc->efxc_base = 0x30;

View File

@ -114,7 +114,7 @@ tty_watermarks(struct tty *tp)
/* Set low watermark at 10% (when 90% is available). */ /* Set low watermark at 10% (when 90% is available). */
tp->t_inlow = (ttyinq_getallocatedsize(&tp->t_inq) * 9) / 10; 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); bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX);
ttyoutq_setsize(&tp->t_outq, tp, bs); ttyoutq_setsize(&tp->t_outq, tp, bs);

View File

@ -127,7 +127,7 @@ static void inline hhook_run_tcp_est_out(struct tcpcb *tp,
static void inline cc_after_idle(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 static void inline
hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th,