]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit
ALSA: ppc/awacs: shut up maybe-uninitialized warning
authorArnd Bergmann <arnd@arndb.de>
Mon, 4 Jul 2016 15:07:45 +0000 (17:07 +0200)
committerStefan Bader <stefan.bader@canonical.com>
Mon, 8 May 2017 12:54:38 +0000 (14:54 +0200)
commit4ce1ec320502c54808ab57ad39631acd1185ea5f
tree5aa0fb29c515a75f8819e71119bf7f9832ca272c
parent4bfb06b09cd35cf913a27c7b6d06e7e8539fcb5e
ALSA: ppc/awacs: shut up maybe-uninitialized warning

BugLink: http://bugs.launchpad.net/bugs/1689296
commit b268c34e5ee92a4cc3099b0caaf26e6bfbdf0f18 upstream.

The awacs sound driver produces a false-positive warning in ppc64_defconfig:

sound/ppc/awacs.c: In function 'snd_pmac_awacs_init':
include/sound/control.h:219:9: warning: 'master_vol' may be used uninitialized in this function [-Wmaybe-uninitialized]

I haven't come up with a good way to rewrite the code to avoid the
warning, so here is a bad one: I initialize the variable before
the conditionall initialization so gcc no longer has to worry about
it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
sound/ppc/awacs.c