Fix "stuct", "strut", "struc" typos
authorAlexey Dobriyan <adobriyan@gmail.com>
Sun, 15 Jan 2006 01:12:54 +0000 (02:12 +0100)
committerAdrian Bunk <bunk@r063144.stusta.swh.mhn.de>
Sun, 15 Jan 2006 01:12:54 +0000 (02:12 +0100)
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Documentation/DocBook/videobook.tmpl
Documentation/input/ff.txt
Documentation/sound/alsa/DocBook/writing-an-alsa-driver.tmpl
drivers/net/wan/lmc/lmc_main.c
drivers/scsi/FlashPoint.c
include/asm-v850/ptrace.h
include/linux/pfkeyv2.h

index 3ec6c875588ab7e8d1268e9ee974655c0cb843ca..fdff984a516188266df0845e3e3e1b181d9972e1 100644 (file)
@@ -229,7 +229,7 @@ int __init myradio_init(struct video_init *v)
 
 static int users = 0;
 
-static int radio_open(stuct video_device *dev, int flags)
+static int radio_open(struct video_device *dev, int flags)
 {
         if(users)
                 return -EBUSY;
@@ -949,7 +949,7 @@ int __init mycamera_init(struct video_init *v)
 
 static int users = 0;
 
-static int camera_open(stuct video_device *dev, int flags)
+static int camera_open(struct video_device *dev, int flags)
 {
         if(users)
                 return -EBUSY;
index efa7dd6751f3bb5bbb774c397a227e2045d3c4f8..c7e10eaff203c595e3ba99bd77540e7b86889723 100644 (file)
@@ -120,7 +120,7 @@ to the unique id assigned by the driver. This data is required for performing
 some operations (removing an effect, controlling the playback).
 This if field must be set to -1 by the user in order to tell the driver to
 allocate a new effect.
-See <linux/input.h> for a description of the ff_effect stuct. You should also
+See <linux/input.h> for a description of the ff_effect struct. You should also
 find help in a few sketches, contained in files shape.fig and interactive.fig.
 You need xfig to visualize these files.
 
index 4963d83d15118d332dedc2910b5e0836237689b0..e651ed8d1e6f448436cabf1bcfd6cc1fdf863fa4 100644 (file)
@@ -5577,7 +5577,7 @@ struct _snd_pcm_runtime {
       <informalexample>
         <programlisting>
 <![CDATA[
-  static int mychip_suspend(strut pci_dev *pci, pm_message_t state)
+  static int mychip_suspend(struct pci_dev *pci, pm_message_t state)
   {
           /* (1) */
           struct snd_card *card = pci_get_drvdata(pci);
index 2b948ea397d56aa553900e2e25da03ed29665660..40926d779161d10602090f5314392625c68af622 100644 (file)
@@ -641,7 +641,7 @@ static void lmc_watchdog (unsigned long data) /*fold00*/
     spin_lock_irqsave(&sc->lmc_lock, flags);
 
     if(sc->check != 0xBEAFCAFE){
-        printk("LMC: Corrupt net_device stuct, breaking out\n");
+        printk("LMC: Corrupt net_device struct, breaking out\n");
        spin_unlock_irqrestore(&sc->lmc_lock, flags);
         return;
     }
index 5beed4f6d985a7b2bd2c9f007b2e49158989ec31..8d64f0bed6287e70b473e0b4198e053d2c11830d 100644 (file)
@@ -149,7 +149,7 @@ typedef SCCBMGR_INFO *      PSCCBMGR_INFO;
 #define PCI_BUS_CARD          0x03
 #define VESA_BUS_CARD         0x04
 
-/* SCCB struc used for both SCCB and UCB manager compiles! 
+/* SCCB struct used for both SCCB and UCB manager compiles! 
  * The UCB Manager treats the SCCB as it's 'native hardware structure' 
  */
 
index 7bf72bb5078cf122036cb47c220973022c0b11a0..4f35cf2cd641a8c2abf0c9ea0c7ed23d137b17a0 100644 (file)
@@ -92,7 +92,7 @@ struct pt_regs
 /* The number of bytes used to store each register.  */
 #define _PT_REG_SIZE   4
 
-/* Offset of a general purpose register in a stuct pt_regs.  */
+/* Offset of a general purpose register in a struct pt_regs.  */
 #define PT_GPR(num)    ((num) * _PT_REG_SIZE)
 
 /* Offsets of various special registers & fields in a struct pt_regs.  */
index 6351c4055acea365d682d33c89f42b5b8a16b035..bac0fb389cf1c094e55f6cb3af4ad8e00c0f913f 100644 (file)
@@ -104,7 +104,7 @@ struct sadb_prop {
 /* followed by:
        struct sadb_comb sadb_combs[(sadb_prop_len +
                sizeof(uint64_t) - sizeof(struct sadb_prop)) /
-               sizeof(strut sadb_comb)]; */
+               sizeof(struct sadb_comb)]; */
 
 struct sadb_comb {
        uint8_t         sadb_comb_auth;
This page took 0.050519 seconds and 5 git commands to generate.