diff options
author | Jyri Sarha <jsarha@ti.com> | 2012-08-16 16:56:21 +0300 |
---|---|---|
committer | Dmytro Kedrovskyi <x0169235@ti.com> | 2012-09-27 19:21:51 +0300 |
commit | 400ae33c48fde249b358aabfbdc56c1564100852 (patch) | |
tree | 1e34024e1ceeaf0c898a44c227db172911db7a1a /sound/soc/omap | |
parent | 551bb2b309da64df775a6285b0adc1dcd587045f (diff) | |
download | kernel_samsung_espresso10-400ae33c48fde249b358aabfbdc56c1564100852.zip kernel_samsung_espresso10-400ae33c48fde249b358aabfbdc56c1564100852.tar.gz kernel_samsung_espresso10-400ae33c48fde249b358aabfbdc56c1564100852.tar.bz2 |
ASoC: OMAP ABE: Fix TONES_DL 44.1kHz task settings
Back port of change-id: I0361bc6a1ae2bbc4fa0155e92c9d9c21cff7dfea
C_ABE_FW_TASK_IO_TONES_DL task wasn't scheduled for TONES_DL port at
44.1kHz which introduced noise.
Signed-off-by: Jyri Sarha <jsarha@ti.com>
Change-Id: I8972f1dd4524fe04a522fff4d5928886a8f94ad3
Diffstat (limited to 'sound/soc/omap')
-rw-r--r-- | sound/soc/omap/abe/abe_port.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/omap/abe/abe_port.c b/sound/soc/omap/abe/abe_port.c index fa3ad0b..fca923c 100644 --- a/sound/soc/omap/abe/abe_port.c +++ b/sound/soc/omap/abe/abe_port.c @@ -1128,6 +1128,7 @@ void abe_init_io_tasks(u32 id, abe_data_format_t *format, case OMAP_ABE_TONES_DL_PORT: if (abe_port[id].format.f == 44100) { smem1 = TONES_44P1_WPTR_labelID; + abe->MultiFrame[20][0] = ABE_TASK_ID(C_ABE_FW_TASK_IO_TONES_DL); abe->MultiFrame[20][1] = ABE_TASK_ID(C_ABE_FW_TASK_SRC44P1_TONES_1211); } else { abe->MultiFrame[20][1] = 0; |