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

Commit de64c0ee authored by Dan Carpenter's avatar Dan Carpenter Committed by Takashi Iwai
Browse files

ALSA: cs46xx - signedness bug in snd_cs46xx_codec_read()



This function returns its own error codes instead of normal negative
error codes.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 144dad99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ static unsigned short snd_cs46xx_codec_read(struct snd_cs46xx *chip,

	if (snd_BUG_ON(codec_index != CS46XX_PRIMARY_CODEC_INDEX &&
		       codec_index != CS46XX_SECONDARY_CODEC_INDEX))
		return -EINVAL;
		return 0xffff;

	chip->active_ctrl(chip, 1);