diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-07-04 11:07:45 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-07-05 02:35:49 -0400 |
commit | b268c34e5ee92a4cc3099b0caaf26e6bfbdf0f18 (patch) | |
tree | d1c5b029f97c46e09456c5e95e5db422454bbdd4 | |
parent | cf7d7edc7a120fd5001f6dcc1e9f2c8e9c09e6c9 (diff) |
ALSA: ppc/awacs: shut up maybe-uninitialized warning
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>
-rw-r--r-- | sound/ppc/awacs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/ppc/awacs.c b/sound/ppc/awacs.c index 09da7b52bc2e..1468e4b7bf93 100644 --- a/sound/ppc/awacs.c +++ b/sound/ppc/awacs.c | |||
@@ -991,6 +991,7 @@ snd_pmac_awacs_init(struct snd_pmac *chip) | |||
991 | if (err < 0) | 991 | if (err < 0) |
992 | return err; | 992 | return err; |
993 | } | 993 | } |
994 | master_vol = NULL; | ||
994 | if (pm7500) | 995 | if (pm7500) |
995 | err = build_mixers(chip, | 996 | err = build_mixers(chip, |
996 | ARRAY_SIZE(snd_pmac_awacs_mixers_pmac7500), | 997 | ARRAY_SIZE(snd_pmac_awacs_mixers_pmac7500), |