]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - sound/isa/sb/emu8000_synth.c
Merge branch 'bkl-removal' of git://git.lwn.net/linux-2.6
[linux-2.6-omap-h63xx.git] / sound / isa / sb / emu8000_synth.c
index 1f63aa52d5961035b80b081ab975ba77cd49bd7c..0c7905c85b760a287ee79242f40c9d66b95b00eb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
+ *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  *     and (c) 1999 Steve Ratcliffe <steve@parabola.demon.co.uk>
  *  Copyright (C) 1999-2000 Takashi Iwai <tiwai@suse.de>
  *
@@ -33,12 +33,12 @@ MODULE_LICENSE("GPL");
 /*
  * create a new hardware dependent device for Emu8000
  */
-static int snd_emu8000_new_device(snd_seq_device_t *dev)
+static int snd_emu8000_new_device(struct snd_seq_device *dev)
 {
-       emu8000_t *hw;
-       snd_emux_t *emu;
+       struct snd_emu8000 *hw;
+       struct snd_emux *emu;
 
-       hw = *(emu8000_t**)SNDRV_SEQ_DEVICE_ARGPTR(dev);
+       hw = *(struct snd_emu8000**)SNDRV_SEQ_DEVICE_ARGPTR(dev);
        if (hw == NULL)
                return -EINVAL;
 
@@ -56,7 +56,7 @@ static int snd_emu8000_new_device(snd_seq_device_t *dev)
        emu->num_ports = hw->seq_ports;
 
        if (hw->memhdr) {
-               snd_printk("memhdr is already initialized!?\n");
+               snd_printk(KERN_ERR "memhdr is already initialized!?\n");
                snd_util_memhdr_free(hw->memhdr);
        }
        hw->memhdr = snd_util_memhdr_new(hw->mem_size);
@@ -92,9 +92,9 @@ static int snd_emu8000_new_device(snd_seq_device_t *dev)
 /*
  * free all resources
  */
-static int snd_emu8000_delete_device(snd_seq_device_t *dev)
+static int snd_emu8000_delete_device(struct snd_seq_device *dev)
 {
-       emu8000_t *hw;
+       struct snd_emu8000 *hw;
 
        if (dev->driver_data == NULL)
                return 0; /* no synth was allocated actually */
@@ -118,11 +118,12 @@ static int snd_emu8000_delete_device(snd_seq_device_t *dev)
 static int __init alsa_emu8000_init(void)
 {
        
-       static snd_seq_dev_ops_t ops = {
+       static struct snd_seq_dev_ops ops = {
                snd_emu8000_new_device,
                snd_emu8000_delete_device,
        };
-       return snd_seq_device_register_driver(SNDRV_SEQ_DEV_ID_EMU8000, &ops, sizeof(emu8000_t*));
+       return snd_seq_device_register_driver(SNDRV_SEQ_DEV_ID_EMU8000, &ops,
+                                             sizeof(struct snd_emu8000*));
 }
 
 static void __exit alsa_emu8000_exit(void)