diff options
author | David Henningsson <david.henningsson@canonical.com> | 2011-10-05 15:53:25 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-10-05 17:22:04 +0200 |
commit | 7c2f8e4009d4b66c8458e3a5c20510b4262853bb (patch) | |
tree | 5958ddebda59e7822890f66275787d134fa1543b /sound/pci | |
parent | 48718eab5a719cb537466124d9585b3066e27fae (diff) |
ALSA: jack - Add "Line In" input jack constants
Similar to Line Out, these constants form the base for future
patches enabling input jack reporting for Line in jacks.
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index e3db1961041..8b046a10b42 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -5264,6 +5264,8 @@ static const char *get_jack_default_name(struct hda_codec *codec, hda_nid_t nid, return "Mic"; case SND_JACK_LINEOUT: return "Line-out"; + case SND_JACK_LINEIN: + return "Line-in"; case SND_JACK_HEADSET: return "Headset"; case SND_JACK_VIDEOOUT: |