linux-brain/sound/i2c
Philipp Klocke 86f63146f8 ALSA: i2c/cs8427: Fix int to char conversion
[ Upstream commit eb7ebfa3c1 ]

Compiling with clang yields the following warning:

sound/i2c/cs8427.c:140:31: warning: implicit conversion from 'int'
to 'char' changes value from 160 to -96 [-Wconstant-conversion]
    data[0] = CS8427_REG_AUTOINC | CS8427_REG_CORU_DATABUF;
            ~ ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

Because CS8427_REG_AUTOINC is defined as 128, it is too big for a
char field.
So change data from char to unsigned char, that it can hold the value.

This patch does not change the generated code.

Signed-off-by: Philipp Klocke <philipp97kl@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2019-12-01 09:16:36 +01:00
..
other ALSA: i2c: ak4xxx-adda: Fix a possible null pointer dereference in build_adc_controls() 2019-10-05 13:09:37 +02:00
cs8427.c ALSA: i2c/cs8427: Fix int to char conversion 2019-12-01 09:16:36 +01:00
i2c.c ALSA: i2c: Remove empty init and exit 2018-08-03 16:11:43 +02:00
Makefile License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
tea6330t.c ALSA: i2c: Remove empty init and exit 2018-08-03 16:11:43 +02:00