ALSA: ctxfi: use enum type CT_SUM_CTL where appropriate
authorStefan Agner <stefan@agner.ch>
Sun, 17 Jun 2018 13:46:49 +0000 (15:46 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 18 Jun 2018 15:40:18 +0000 (17:40 +0200)
commita753af301c616cd51dedb3b5a8b3ba6cac3e58b8
tree9a7a9001d26750a136eb46cebe7a2158b0dffab0
parent01655193c2da12510af8a8b66b56da5e13ce1f91
ALSA: ctxfi: use enum type CT_SUM_CTL where appropriate

Currently a variable of type enum CT_AMIXER_CTL is used for enum
CT_SUM_CTL values. This leads to warnings when using clang:
sound/pci/ctxfi/ctmixer.c:945:32: warning: implicit conversion from enumeration type
      'enum CT_SUM_CTL' to different enumeration type 'enum CT_AMIXER_CTL'
      [-Wenum-conversion]
        for (i = AMIXER_MASTER_F, j = SUM_IN_F;
                                    ~ ^~~~~~~~
sound/pci/ctxfi/ctmixer.c:975:29: warning: implicit conversion from enumeration type
      'enum CT_SUM_CTL' to different enumeration type 'enum CT_AMIXER_CTL'
      [-Wenum-conversion]
        for (i = AMIXER_PCM_F, j = SUM_IN_F; i <= AMIXER_PCM_S; i++, j++) {
                                 ~ ^~~~~~~~

Introduce enum CT_SUM_CTL k and it instead.

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/ctxfi/ctmixer.c