The "no_headphone" variable is never set to "false" so it could be
uninitialized.
Fixes: e936619b7ce7 ("ASoC: qcom: sc7180: Modify machine driver for sound card")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20201116125950.GA44063@mwanda
Signed-off-by: Mark Brown <broonie@kernel.org>
        struct snd_soc_dai_link *link;
        int ret;
        int i;
-       bool no_headphone;
+       bool no_headphone = false;
 
        /* Allocate the private data */
        data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);