]> git.neil.brown.name Git - history.git/commitdiff
ALSA CVS update
authorJaroslav Kysela <perex@suse.cz>
Wed, 20 Aug 2003 23:24:54 +0000 (01:24 +0200)
committerJaroslav Kysela <perex@suse.cz>
Wed, 20 Aug 2003 23:24:54 +0000 (01:24 +0200)
D:2003/08/11 13:37:56
A:Takashi Iwai <tiwai@suse.de>
F:Documentation/DocBook/writing-an-alsa-driver.tmpl:1.12->1.13
L:fix typos

Documentation/sound/alsa/DocBook/writing-an-alsa-driver.tmpl

index 7a8f7fc6610677588e234213be033f22c8474c30..18f9014a9df13e8ebeca8e3453414bc0b4fc7118 100644 (file)
   // chip-specific constructor
   // (see "Management of Cards and Components")
   static int __devinit snd_mychip_create(snd_card_t *card,
-                                         struct pci_device *pci,
+                                         struct pci_dev *pci,
                                          mychip_t **rchip)
   {
           mychip_t *chip;
   };
 
   /* open callback */
-  static int snd_mychip_pcm_open(snd_pcm_substream_t *subs)
+  static int snd_mychip_pcm_open(snd_pcm_substream_t *substream)
   {
           mychip_t *chip = snd_pcm_substream_chip(substream);
           snd_pcm_runtime_t *runtime = substream->runtime;
@@ -2716,7 +2716,7 @@ struct _snd_pcm_runtime {
           <informalexample>
             <programlisting>
 <![CDATA[
-  static int snd_xxx_open(snd_pcm_substream_t *subs);
+  static int snd_xxx_open(snd_pcm_substream_t *substream);
 ]]>
             </programlisting>
           </informalexample>
@@ -2767,7 +2767,7 @@ struct _snd_pcm_runtime {
           <informalexample>
             <programlisting>
 <![CDATA[
-  static int snd_xxx_close(snd_pcm_substream_t *subs);
+  static int snd_xxx_close(snd_pcm_substream_t *substream);
 ]]>
             </programlisting>
           </informalexample>