Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef35be7f authored by Takashi Iwai's avatar Takashi Iwai Committed by Jaroslav Kysela
Browse files

[ALSA] Fix addition of user-defined boolean controls



Fixed the addition of user-defined boolean controls, the private
data size is corrected to be handled properly.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent da43deb1
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -1018,10 +1018,6 @@ static int snd_ctl_elem_add(struct snd_ctl_file *file,
	}
	switch (info->type) {
	case SNDRV_CTL_ELEM_TYPE_BOOLEAN:
		private_size = sizeof(char);
		if (info->count > 128)
			return -EINVAL;
		break;
	case SNDRV_CTL_ELEM_TYPE_INTEGER:
		private_size = sizeof(long);
		if (info->count > 128)