Author: kevlo
Date: Wed Nov  7 07:00:59 2012
New Revision: 242692
URL: http://svnweb.freebsd.org/changeset/base/242692

Log:
  Fix typo; s/ouput/output

Modified:
  head/lib/msun/src/k_rem_pio2.c
  head/secure/usr.bin/bdes/bdes.1
  head/sys/arm/lpc/lpc_gpio.c
  head/sys/dev/bktr/bktr_audio.c
  head/sys/dev/nxge/xgehal/xgehal-device.c
  head/sys/dev/sound/pci/emu10kx.c
  head/sys/kern/tty.c
  head/sys/netinet/tcp_output.c

Modified: head/lib/msun/src/k_rem_pio2.c
==============================================================================
--- head/lib/msun/src/k_rem_pio2.c      Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/lib/msun/src/k_rem_pio2.c      Wed Nov  7 07:00:59 2012        
(r242692)
@@ -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

Modified: head/secure/usr.bin/bdes/bdes.1
==============================================================================
--- head/secure/usr.bin/bdes/bdes.1     Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/secure/usr.bin/bdes/bdes.1     Wed Nov  7 07:00:59 2012        
(r242692)
@@ -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

Modified: head/sys/arm/lpc/lpc_gpio.c
==============================================================================
--- head/sys/arm/lpc/lpc_gpio.c Wed Nov  7 06:53:44 2012        (r242691)
+++ head/sys/arm/lpc/lpc_gpio.c Wed Nov  7 07:00:59 2012        (r242692)
@@ -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)

Modified: head/sys/dev/bktr/bktr_audio.c
==============================================================================
--- head/sys/dev/bktr/bktr_audio.c      Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/sys/dev/bktr/bktr_audio.c      Wed Nov  7 07:00:59 2012        
(r242692)
@@ -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)

Modified: head/sys/dev/nxge/xgehal/xgehal-device.c
==============================================================================
--- head/sys/dev/nxge/xgehal/xgehal-device.c    Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/sys/dev/nxge/xgehal/xgehal-device.c    Wed Nov  7 07:00:59 2012        
(r242692)
@@ -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;

Modified: head/sys/dev/sound/pci/emu10kx.c
==============================================================================
--- head/sys/dev/sound/pci/emu10kx.c    Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/sys/dev/sound/pci/emu10kx.c    Wed Nov  7 07:00:59 2012        
(r242692)
@@ -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;

Modified: head/sys/kern/tty.c
==============================================================================
--- head/sys/kern/tty.c Wed Nov  7 06:53:44 2012        (r242691)
+++ head/sys/kern/tty.c Wed Nov  7 07:00:59 2012        (r242692)
@@ -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);
 

Modified: head/sys/netinet/tcp_output.c
==============================================================================
--- head/sys/netinet/tcp_output.c       Wed Nov  7 06:53:44 2012        
(r242691)
+++ head/sys/netinet/tcp_output.c       Wed Nov  7 07:00:59 2012        
(r242692)
@@ -127,7 +127,7 @@ static void inline  hhook_run_tcp_est_out
 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,
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to