aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/asihpi
diff options
context:
space:
mode:
authorEliot Blennerhassett <eblennerhassett@audioscience.com>2011-12-21 19:38:45 -0500
committerTakashi Iwai <tiwai@suse.de>2011-12-22 02:13:07 -0500
commit862e14185b46e1d65d560c7dbaa0f2c842b71d20 (patch)
treef2d5b86745578e81a36a308a5082e9c7eb07fe88 /sound/pci/asihpi
parent50d5f773ecc42fec029530f0e2e22686ccdf0ac7 (diff)
ALSA: asihpi - Add autofade query.
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi')
-rw-r--r--sound/pci/asihpi/hpi.h3
-rw-r--r--sound/pci/asihpi/hpifunc.c10
2 files changed, 13 insertions, 0 deletions
diff --git a/sound/pci/asihpi/hpi.h b/sound/pci/asihpi/hpi.h
index 867c144fed31..f2f1d980102b 100644
--- a/sound/pci/asihpi/hpi.h
+++ b/sound/pci/asihpi/hpi.h
@@ -1347,6 +1347,9 @@ u16 hpi_volume_auto_fade_profile(u32 h_control,
1347 short an_stop_gain0_01dB[HPI_MAX_CHANNELS], u32 duration_ms, 1347 short an_stop_gain0_01dB[HPI_MAX_CHANNELS], u32 duration_ms,
1348 u16 profile); 1348 u16 profile);
1349 1349
1350u16 hpi_volume_query_auto_fade_profile(const u32 h_control, const u32 i,
1351 u16 *profile);
1352
1350/*****************/ 1353/*****************/
1351/* Level control */ 1354/* Level control */
1352/*****************/ 1355/*****************/
diff --git a/sound/pci/asihpi/hpifunc.c b/sound/pci/asihpi/hpifunc.c
index ebb568d695f1..510e56cffd31 100644
--- a/sound/pci/asihpi/hpifunc.c
+++ b/sound/pci/asihpi/hpifunc.c
@@ -2826,6 +2826,16 @@ u16 hpi_volume_auto_fade(u32 h_control,
2826 duration_ms, HPI_VOLUME_AUTOFADE_LOG); 2826 duration_ms, HPI_VOLUME_AUTOFADE_LOG);
2827} 2827}
2828 2828
2829u16 hpi_volume_query_auto_fade_profile(const u32 h_volume, const u32 i,
2830 u16 *profile)
2831{
2832 u16 e;
2833 u32 u;
2834 e = hpi_control_query(h_volume, HPI_VOLUME_AUTOFADE, i, 0, &u);
2835 *profile = (u16)u;
2836 return e;
2837}
2838
2829u16 hpi_vox_set_threshold(u32 h_control, short an_gain0_01dB) 2839u16 hpi_vox_set_threshold(u32 h_control, short an_gain0_01dB)
2830{ 2840{
2831 struct hpi_message hm; 2841 struct hpi_message hm;