mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 17:53:56 +08:00
ALSA: hda - Allow capture-only configuration
We have blindly assumed that all valid configurations should have either analog or digital playback, but there can be capture-only configurations. The parser shouldn't escape in such a case. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
5b8620bb84
commit
c9e4bdb755
@ -4334,7 +4334,8 @@ int snd_hda_gen_parse_auto_config(struct hda_codec *codec,
|
||||
spec->no_analog = 1;
|
||||
goto dig_only;
|
||||
}
|
||||
return 0; /* can't find valid BIOS pin config */
|
||||
if (!cfg->num_inputs && !cfg->dig_in_pin)
|
||||
return 0; /* can't find valid BIOS pin config */
|
||||
}
|
||||
|
||||
if (!spec->no_primary_hp &&
|
||||
|
Loading…
Reference in New Issue
Block a user