Update of /cvsroot/alsa/alsa-kernel/pci/au88x0
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16582/pci/au88x0

Modified Files:
        au88x0.c 
Log Message:
- removed superfluous warning messages after pci_module_init().
  (2.6 kernel doesn't return the error anyway...)
- store card pointer in pci_drvdata instead of chip pointer.
  this would make easier to add PM support.


Index: au88x0.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/au88x0/au88x0.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- au88x0.c    7 Apr 2004 17:48:19 -0000       1.7
+++ au88x0.c    13 Apr 2004 14:59:00 -0000      1.8
@@ -353,7 +353,7 @@
                return err;
        }
        // (7)
-       pci_set_drvdata(pci, chip);
+       pci_set_drvdata(pci, card);
        dev++;
        vortex_connect_default(chip, 1);
        vortex_enable_int(chip);
@@ -363,16 +363,8 @@
 // destructor -- see "Destructor" sub-section
 static void __devexit snd_vortex_remove(struct pci_dev *pci)
 {
-       vortex_t *vortex = snd_magic_cast(vortex_t,
-                                         pci_get_drvdata(pci), return);
-
-       if (vortex) {
-               // Release ALSA stuff.
-               snd_card_free(vortex->card);
-               // Free Vortex struct.
-               pci_set_drvdata(pci, NULL);
-       } else
-               printk("snd_vortex_remove called more than one time!\n");
+       snd_card_free(pci_get_drvdata(pci));
+       pci_set_drvdata(pci, NULL);
 }
 
 // pci_driver definition
@@ -386,16 +378,7 @@
 // initialization of the module
 static int __init alsa_card_vortex_init(void)
 {
-       int err;
-
-       if ((err = pci_module_init(&driver)) < 0) {
-#ifdef MODULE
-               printk(KERN_ERR "Aureal soundcard not found "
-                      "or device busy\n");
-#endif
-               return err;
-       }
-       return 0;
+       return pci_module_init(&driver);
 }
 
 // clean up the module



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to