diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-20 12:41:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-20 12:41:44 -0400 |
commit | 7f06a8b26aba1dc03b42272dc0089a800372c575 (patch) | |
tree | 7c67198f83d069eb13fd417e022d111b7e4c82a1 /include/sound/soc-dapm.h | |
parent | c3ad33c9bcb6616999953af76f16318120fe3691 (diff) | |
parent | d71f4cece4bd97d05592836202fc04ff2e7817e3 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6: (250 commits)
ALSA: hda: Storage class should be before const qualifier
ASoC: tpa6130a2: Remove CPVSS and HPVdd supplies
ASoC: tpa6130a2: Define output pins with SND_SOC_DAPM_OUTPUT
ASoC: sdp4430 - add sdp4430 pcm ops to DAI.
ASoC: TWL6040: Enable earphone path in codec
ASoC: SDP4430: Add support for Earphone speaker
ASoC: SDP4430: Add sdp4430 machine driver
ASoC: tlv320dac33: Avoid powering off while in BIAS_OFF
ASoC: tlv320dac33: Use dev_dbg in dac33_hard_power function
ALSA: sound/pci/asihpi: Use kzalloc
ALSA: hdmi - dont fail on extra nodes
ALSA: intelhdmi - add id for the CougarPoint chipset
ALSA: intelhdmi - user friendly codec name
ALSA: intelhdmi - add dependency on SND_DYNAMIC_MINORS
ALSA: asihpi: incorrect range check
ALSA: asihpi: testing the wrong variable
ALSA: es1688: add pedantic range checks
ARM: McBSP: Add support for omap4 in McBSP driver
ARM: McBSP: Fix request for irq in OMAP4
OMAP: McBSP: Add 32-bit mode support
...
Diffstat (limited to 'include/sound/soc-dapm.h')
-rw-r--r-- | include/sound/soc-dapm.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index c0922a034223..66ff4c124dbd 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h | |||
@@ -339,6 +339,9 @@ int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, const char *pin); | |||
339 | int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, const char *pin); | 339 | int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, const char *pin); |
340 | int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, const char *pin); | 340 | int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, const char *pin); |
341 | int snd_soc_dapm_sync(struct snd_soc_codec *codec); | 341 | int snd_soc_dapm_sync(struct snd_soc_codec *codec); |
342 | int snd_soc_dapm_force_enable_pin(struct snd_soc_codec *codec, | ||
343 | const char *pin); | ||
344 | int snd_soc_dapm_ignore_suspend(struct snd_soc_codec *codec, const char *pin); | ||
342 | 345 | ||
343 | /* dapm widget types */ | 346 | /* dapm widget types */ |
344 | enum snd_soc_dapm_type { | 347 | enum snd_soc_dapm_type { |
@@ -425,9 +428,8 @@ struct snd_soc_dapm_widget { | |||
425 | unsigned char connected:1; /* connected codec pin */ | 428 | unsigned char connected:1; /* connected codec pin */ |
426 | unsigned char new:1; /* cnew complete */ | 429 | unsigned char new:1; /* cnew complete */ |
427 | unsigned char ext:1; /* has external widgets */ | 430 | unsigned char ext:1; /* has external widgets */ |
428 | unsigned char muted:1; /* muted for pop reduction */ | 431 | unsigned char force:1; /* force state */ |
429 | unsigned char suspend:1; /* was active before suspend */ | 432 | unsigned char ignore_suspend:1; /* kept enabled over suspend */ |
430 | unsigned char pmdown:1; /* waiting for timeout */ | ||
431 | 433 | ||
432 | int (*power_check)(struct snd_soc_dapm_widget *w); | 434 | int (*power_check)(struct snd_soc_dapm_widget *w); |
433 | 435 | ||