ALSA: hda - correct bracketing in spdif test in patch_sigmatel.c

Noticed by sparse:
sound/pci/hda/patch_sigmatel.c:1285:43: warning: dubious: !x & y

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Matthew Ranostay <mranostay@embeddedalley.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Harvey Harrison and committed by
Takashi Iwai
da74ae3e 863b4518

+1 -1
+1 -1
sound/pci/hda/patch_sigmatel.c
··· 1282 1282 return err; 1283 1283 spec->multiout.share_spdif = 1; 1284 1284 } 1285 - if (spec->dig_in_nid && (!spec->gpio_dir & 0x01)) { 1285 + if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) { 1286 1286 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid); 1287 1287 if (err < 0) 1288 1288 return err;