projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0f3b21
)
ALSA: hda - do not add non-existing Mic boost controls
author
David Henningsson
<david.henningsson@canonical.com>
Wed, 16 Jan 2013 14:58:43 +0000
(15:58 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 16 Jan 2013 15:22:43 +0000
(16:22 +0100)
If the input node does not have any volume capable input amp,
don't add such a control.
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_generic.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/hda/hda_generic.c
b/sound/pci/hda/hda_generic.c
index c33e019617cdd4c137a3c53ae85b2edbe26a5c87..05dfeb7bfc970fdbe913b5c89a8d7ca8a68dfa15 100644
(file)
--- a/
sound/pci/hda/hda_generic.c
+++ b/
sound/pci/hda/hda_generic.c
@@
-2826,6
+2826,9
@@
static int parse_mic_boost(struct hda_codec *codec)
struct nid_path *path;
unsigned int val;
+ if (!nid_has_volume(codec, nid, HDA_INPUT))
+ continue;
+
label = hda_get_autocfg_input_label(codec, cfg, i);
if (prev_label && !strcmp(label, prev_label))
type_idx++;