]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ALSA: hda/ca0132: Limit values for chip addresses to 32-bit
authorMatthias Kaehlcke <mka@chromium.org>
Sat, 1 Apr 2017 01:00:04 +0000 (18:00 -0700)
committerTakashi Iwai <tiwai@suse.de>
Sat, 1 Apr 2017 08:46:18 +0000 (10:46 +0200)
commitd1600401faad4bc186bfdb291d8af644465e20bd
tree01e746e697e6c25024e8f937e507f62cb22224f9
parenta8c006aafead3c45ae5d5601e3717055bccf41bc
ALSA: hda/ca0132: Limit values for chip addresses to 32-bit

With the previous unsigned long value clang generates warnings like
this:

sound/pci/hda/patch_ca0132.c:860:37: error: implicit conversion from
'unsigned long' to 'u32' (aka 'unsigned int') changes value from
18446744073709551615 to 4294967295 [-Werror,-Wconstant-conversion]
        spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx;
                             ~             ^~~~

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_ca0132.c