-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 284206 b: refs/heads/master c: 35be544 h: refs/heads/master v: v3
- Loading branch information
Takashi Iwai
committed
Nov 16, 2011
1 parent
bb7b72c
commit 51ae953
Showing
8 changed files
with
77 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 3a93897ea37cbb8277f8a4232c12c0c18168a7db | ||
refs/heads/master: 35be544af367170a9c6bf63adcf9d0cb2d569dbb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Helper functions for jack-detection kcontrols | ||
* | ||
* Copyright (c) 2011 Takashi Iwai <tiwai@suse.de> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the Free | ||
* Software Foundation; either version 2 of the License, or (at your option) | ||
* any later version. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <sound/core.h> | ||
#include <sound/control.h> | ||
|
||
#define jack_detect_kctl_info snd_ctl_boolean_mono_info | ||
|
||
static int jack_detect_kctl_get(struct snd_kcontrol *kcontrol, | ||
struct snd_ctl_elem_value *ucontrol) | ||
{ | ||
ucontrol->value.integer.value[0] = kcontrol->private_value; | ||
return 0; | ||
} | ||
|
||
static struct snd_kcontrol_new jack_detect_kctl = { | ||
/* name is filled later */ | ||
.iface = SNDRV_CTL_ELEM_IFACE_CARD, | ||
.access = SNDRV_CTL_ELEM_ACCESS_READ, | ||
.info = jack_detect_kctl_info, | ||
.get = jack_detect_kctl_get, | ||
}; | ||
|
||
struct snd_kcontrol * | ||
snd_kctl_jack_new(const char *name, int idx, void *private_data) | ||
{ | ||
struct snd_kcontrol *kctl; | ||
kctl = snd_ctl_new1(&jack_detect_kctl, private_data); | ||
if (!kctl) | ||
return NULL; | ||
snprintf(kctl->id.name, sizeof(kctl->id.name), "%s Jack", name); | ||
kctl->id.index = idx; | ||
kctl->private_value = 0; | ||
return kctl; | ||
} | ||
EXPORT_SYMBOL_GPL(snd_kctl_jack_new); | ||
|
||
void snd_kctl_jack_report(struct snd_card *card, | ||
struct snd_kcontrol *kctl, bool status) | ||
{ | ||
if (kctl->private_value == status) | ||
return; | ||
kctl->private_value = status; | ||
snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id); | ||
} | ||
EXPORT_SYMBOL_GPL(snd_kctl_jack_report); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters