]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - Set current_headset_type to ALC_HEADSET_TYPE_ENUM (janitorial)
authorDavid Henningsson <david.henningsson@canonical.com>
Fri, 22 Nov 2013 11:17:06 +0000 (12:17 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 22 Nov 2013 11:58:01 +0000 (12:58 +0100)
current_headset_type should be of the HEADSET_TYPE enum, not the
HEADSET_MODE enum. Since ALC_HEADSET_TYPE_UNKNOWN and ALC_HEADSET_MODE_UNKNOWN
are both 0, this patch is just janitorial.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_realtek.c

index 6d8d9b3520d04ab51959902b099c01eb99456c9d..5e42059f10a1fc4e5e6f127a6c6b536ae0dd537f 100644 (file)
@@ -3414,7 +3414,7 @@ static void alc_update_headset_mode_hook(struct hda_codec *codec,
 static void alc_update_headset_jack_cb(struct hda_codec *codec, struct hda_jack_tbl *jack)
 {
        struct alc_spec *spec = codec->spec;
-       spec->current_headset_type = ALC_HEADSET_MODE_UNKNOWN;
+       spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
        snd_hda_gen_hp_automute(codec, jack);
 }