Skip to content
Snippets Groups Projects
Commit 2abb8017 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

sound: allow the unit search until 256 in sound_core.c


The upper limit of the available minors isn't necessarily 128 + unit,
but it's rather up to 256.  Fixing this allows more than 8 devices.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 779ae5a0
No related branches found
No related tags found
No related merge requests found
...@@ -361,7 +361,7 @@ int register_sound_special_device(const struct file_operations *fops, int unit, ...@@ -361,7 +361,7 @@ int register_sound_special_device(const struct file_operations *fops, int unit,
struct device *dev) struct device *dev)
{ {
const int chain = unit % SOUND_STEP; const int chain = unit % SOUND_STEP;
int max_unit = 128 + chain; int max_unit = 256;
const char *name; const char *name;
char _name[16]; char _name[16];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment