I found that the maestro 2E sound hardware didn't want to make noise
for me under 2.4.  Today I got itchy and scratched.  Here's a patch:

(keller) 1021$ bk diffs -u drivers/sound/maestro.c
===== drivers/sound/maestro.c 1.11 vs edited =====
--- 1.11/drivers/sound/maestro.c        Tue Aug 29 10:09:15 2000
+++ edited/drivers/sound/maestro.c      Mon Nov 13 20:53:01 2000
@@ -3390,6 +3390,19 @@
        
        ess = &card->channels[0];
 
+       if (pci_enable_device(pcidev)) {
+               printk (KERN_ERR "maestro: pci_enable_device() failed\n");
+               for (i = 0; i < NR_DSPS; i++) {
+                       struct ess_state *s = &card->channels[i];
+                       if (s->dev_audio != -1)
+                               unregister_sound_dsp(s->dev_audio);
+               }
+               release_region(card->iobase, 256);
+               unregister_reboot_notifier(&maestro_nb);
+               kfree(card);
+               return 0;
+       }
+
        /*
         *      Ok card ready. Begin setup proper
         */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to