Skip to content

Commit

Permalink
ALSA: asihpi - Add autofade query.
Browse files Browse the repository at this point in the history
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Eliot Blennerhassett authored and Takashi Iwai committed Dec 22, 2011
1 parent 50d5f77 commit 862e141
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sound/pci/asihpi/hpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -1347,6 +1347,9 @@ u16 hpi_volume_auto_fade_profile(u32 h_control,
short an_stop_gain0_01dB[HPI_MAX_CHANNELS], u32 duration_ms,
u16 profile);

u16 hpi_volume_query_auto_fade_profile(const u32 h_control, const u32 i,
u16 *profile);

/*****************/
/* Level control */
/*****************/
Expand Down
10 changes: 10 additions & 0 deletions sound/pci/asihpi/hpifunc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2826,6 +2826,16 @@ u16 hpi_volume_auto_fade(u32 h_control,
duration_ms, HPI_VOLUME_AUTOFADE_LOG);
}

u16 hpi_volume_query_auto_fade_profile(const u32 h_volume, const u32 i,
u16 *profile)
{
u16 e;
u32 u;
e = hpi_control_query(h_volume, HPI_VOLUME_AUTOFADE, i, 0, &u);
*profile = (u16)u;
return e;
}

u16 hpi_vox_set_threshold(u32 h_control, short an_gain0_01dB)
{
struct hpi_message hm;
Expand Down

0 comments on commit 862e141

Please sign in to comment.