*/
 int snd_ecards_limit;
 
-static struct list_head snd_minors_hash[SNDRV_CARDS];
+static struct snd_minor *snd_minors[SNDRV_OS_MINORS];
 
 static DECLARE_MUTEX(sound_mutex);
 
 
 #endif                         /* request_module support */
 
-static struct snd_minor *snd_minor_search(int minor)
-{
-       struct list_head *list;
-       struct snd_minor *mptr;
-
-       list_for_each(list, &snd_minors_hash[SNDRV_MINOR_CARD(minor)]) {
-               mptr = list_entry(list, struct snd_minor, list);
-               if (mptr->number == minor)
-                       return mptr;
-       }
-       return NULL;
-}
-
 static int snd_open(struct inode *inode, struct file *file)
 {
        int minor = iminor(inode);
                }
        } else {
 #ifdef CONFIG_KMOD
-               if ((mptr = snd_minor_search(minor)) == NULL)
+               if ((mptr = snd_minors[minor]) == NULL)
                        snd_request_other(minor);
 #endif
        }
-       if (mptr == NULL && (mptr = snd_minor_search(minor)) == NULL)
+       if (mptr == NULL && (mptr = snd_minors[minor]) == NULL)
                return -ENODEV;
        old_fops = file->f_op;
        file->f_op = fops_get(mptr->f_ops);
        if (minor < 0)
                return minor;
        snd_assert(name, return -EINVAL);
-       preg = kzalloc(sizeof(struct snd_minor) + strlen(name) + 1, GFP_KERNEL);
+       preg = kmalloc(sizeof(struct snd_minor) + strlen(name) + 1, GFP_KERNEL);
        if (preg == NULL)
                return -ENOMEM;
-       preg->number = minor;
        preg->type = type;
+       preg->card = card ? card->number : -1;
        preg->device = dev;
        preg->f_ops = f_ops;
        strcpy(preg->name, name);
        down(&sound_mutex);
-       if (snd_minor_search(minor)) {
+       if (snd_minors[minor]) {
                up(&sound_mutex);
                kfree(preg);
                return -EBUSY;
        }
-       list_add_tail(&preg->list, &snd_minors_hash[SNDRV_MINOR_CARD(minor)]);
-       if (strncmp(name, "controlC", 8) || card->number >= cards_limit)
+       snd_minors[minor] = preg;
+       if (type != SNDRV_DEVICE_TYPE_CONTROL || preg->card >= cards_limit)
                devfs_mk_cdev(MKDEV(major, minor), S_IFCHR | device_mode, "snd/%s", name);
        if (card)
                device = card->dev;
        if (minor < 0)
                return minor;
        down(&sound_mutex);
-       if ((mptr = snd_minor_search(minor)) == NULL) {
+       if ((mptr = snd_minors[minor]) == NULL) {
                up(&sound_mutex);
                return -EINVAL;
        }
 
-       if (strncmp(mptr->name, "controlC", 8) || card->number >= cards_limit) /* created in sound.c */
+       if (mptr->type != SNDRV_DEVICE_TYPE_CONTROL ||
+           mptr->card >= cards_limit)                  /* created in sound.c */
                devfs_remove("snd/%s", mptr->name);
        class_device_destroy(sound_class, MKDEV(major, minor));
 
-       list_del(&mptr->list);
+       snd_minors[minor] = NULL;
        up(&sound_mutex);
        kfree(mptr);
        return 0;
 
 static void snd_minor_info_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
 {
-       int card, device;
-       struct list_head *list;
+       int minor;
        struct snd_minor *mptr;
 
        down(&sound_mutex);
-       for (card = 0; card < SNDRV_CARDS; card++) {
-               list_for_each(list, &snd_minors_hash[card]) {
-                       mptr = list_entry(list, struct snd_minor, list);
-                       if (SNDRV_MINOR_DEVICE(mptr->number) != SNDRV_MINOR_GLOBAL) {
-                               if ((device = mptr->device) >= 0)
-                                       snd_iprintf(buffer, "%3i: [%i-%2i]: %s\n", mptr->number, card, device, snd_device_type_name(mptr->type));
-                               else
-                                       snd_iprintf(buffer, "%3i: [%i]   : %s\n", mptr->number, card, snd_device_type_name(mptr->type));
-                       } else {
-                               snd_iprintf(buffer, "%3i:       : %s\n", mptr->number, snd_device_type_name(mptr->type));
-                       }
-               }
+       for (minor = 0; minor < SNDRV_OS_MINORS; ++minor) {
+               if (!(mptr = snd_minors[minor]))
+                       continue;
+               if (mptr->card >= 0) {
+                       if (mptr->device >= 0)
+                               snd_iprintf(buffer, "%3i: [%i-%2i]: %s\n",
+                                           minor, mptr->card, mptr->device,
+                                           snd_device_type_name(mptr->type));
+                       else
+                               snd_iprintf(buffer, "%3i: [%i]   : %s\n",
+                                           minor, mptr->card,
+                                           snd_device_type_name(mptr->type));
+               } else
+                       snd_iprintf(buffer, "%3i:       : %s\n", minor,
+                                   snd_device_type_name(mptr->type));
        }
        up(&sound_mutex);
 }
 static int __init alsa_sound_init(void)
 {
        short controlnum;
-       int err;
-       int card;
 
        snd_major = major;
        snd_ecards_limit = cards_limit;
-       for (card = 0; card < SNDRV_CARDS; card++)
-               INIT_LIST_HEAD(&snd_minors_hash[card]);
-       if ((err = snd_oss_init_module()) < 0)
-               return err;
        devfs_mk_dir("snd");
        if (register_chrdev(major, "alsa", &snd_fops)) {
                snd_printk(KERN_ERR "unable to register native major device number %d\n", major);
 
 #include <sound/info.h>
 #include <linux/sound.h>
 
-#define SNDRV_OS_MINORS                256
+#define SNDRV_OSS_MINORS 128
 
-static struct list_head snd_oss_minors_hash[SNDRV_CARDS];
+static struct snd_minor *snd_oss_minors[SNDRV_OSS_MINORS];
 
 static DECLARE_MUTEX(sound_oss_mutex);
 
-static struct snd_minor *snd_oss_minor_search(int minor)
-{
-       struct list_head *list;
-       struct snd_minor *mptr;
-
-       list_for_each(list, &snd_oss_minors_hash[SNDRV_MINOR_OSS_CARD(minor)]) {
-               mptr = list_entry(list, struct snd_minor, list);
-               if (mptr->number == minor)
-                       return mptr;
-       }
-       return NULL;
-}
-
 static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
 {
        int minor;
        default:
                return -EINVAL;
        }
-       snd_assert(minor >= 0 && minor < SNDRV_OS_MINORS, return -EINVAL);
+       snd_assert(minor >= 0 && minor < SNDRV_OSS_MINORS, return -EINVAL);
        return minor;
 }
 
 
        if (minor < 0)
                return minor;
-       preg = kzalloc(sizeof(struct snd_minor), GFP_KERNEL);
+       preg = kmalloc(sizeof(struct snd_minor), GFP_KERNEL);
        if (preg == NULL)
                return -ENOMEM;
-       preg->number = minor;
        preg->type = type;
+       preg->card = card ? card->number : -1;
        preg->device = dev;
        preg->f_ops = f_ops;
        down(&sound_oss_mutex);
-       list_add_tail(&preg->list, &snd_oss_minors_hash[cidx]);
+       snd_oss_minors[minor] = preg;
        minor_unit = SNDRV_MINOR_OSS_DEVICE(minor);
        switch (minor_unit) {
        case SNDRV_MINOR_OSS_PCM:
                unregister_sound_special(register2);
        if (register1 >= 0)
                unregister_sound_special(register1);
-       list_del(&preg->list);
+       snd_oss_minors[minor] = NULL;
        up(&sound_oss_mutex);
        kfree(preg);
        return -EBUSY;
        if (minor < 0)
                return minor;
        down(&sound_oss_mutex);
-       mptr = snd_oss_minor_search(minor);
+       mptr = snd_oss_minors[minor];
        if (mptr == NULL) {
                up(&sound_oss_mutex);
                return -ENOENT;
        }
        if (track2 >= 0)
                unregister_sound_special(track2);
-       list_del(&mptr->list);
+       snd_oss_minors[minor] = NULL;
        up(&sound_oss_mutex);
        kfree(mptr);
        return 0;
 static void snd_minor_info_oss_read(struct snd_info_entry *entry,
                                    struct snd_info_buffer *buffer)
 {
-       int card, dev;
-       struct list_head *list;
+       int minor;
        struct snd_minor *mptr;
 
        down(&sound_oss_mutex);
-       for (card = 0; card < SNDRV_CARDS; card++) {
-               list_for_each(list, &snd_oss_minors_hash[card]) {
-                       mptr = list_entry(list, struct snd_minor, list);
-                       dev = SNDRV_MINOR_OSS_DEVICE(mptr->number);
-                       if (dev != SNDRV_MINOR_OSS_SNDSTAT &&
-                           dev != SNDRV_MINOR_OSS_SEQUENCER &&
-                           dev != SNDRV_MINOR_OSS_MUSIC)
-                               snd_iprintf(buffer, "%3i: [%i-%2i]: %s\n", mptr->number, card, dev, snd_oss_device_type_name(mptr->type));
-                       else
-                               snd_iprintf(buffer, "%3i:       : %s\n", mptr->number, snd_oss_device_type_name(mptr->type));
-               }
+       for (minor = 0; minor < SNDRV_OSS_MINORS; ++minor) {
+               if (!(mptr = snd_oss_minors[minor]))
+                       continue;
+               if (mptr->card >= 0)
+                       snd_iprintf(buffer, "%3i: [%i-%2i]: %s\n", minor,
+                                   mptr->card, mptr->device,
+                                   snd_oss_device_type_name(mptr->type));
+               else
+                       snd_iprintf(buffer, "%3i:       : %s\n", minor,
+                                   snd_oss_device_type_name(mptr->type));
        }
        up(&sound_oss_mutex);
 }
        return 0;
 }
 
-int __init snd_oss_init_module(void)
-{
-       int card;
-       
-       for (card = 0; card < SNDRV_CARDS; card++)
-               INIT_LIST_HEAD(&snd_oss_minors_hash[card]);
-       return 0;
-}
-
 #endif /* CONFIG_SND_OSSEMUL */