diff options
author | Axel Castaneda Gonzalez <x0055901@ti.com> | 2012-05-03 09:00:21 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-05-11 15:15:22 +0300 |
commit | 3df9fb5c51ca617e410da890f631100ea9f10652 (patch) | |
tree | 0f705465db5e66149a14061df988d776f47fe802 /drivers/video/omap2/dss/dss_features.c | |
parent | 7c92af16780c614b493c4e8a9f495f9dc8008de4 (diff) | |
download | blackbird-op-linux-3df9fb5c51ca617e410da890f631100ea9f10652.tar.gz blackbird-op-linux-3df9fb5c51ca617e410da890f631100ea9f10652.zip |
OMAPDSS: HDMI: Decouple wrapper enable/disable and audio start/stop
Decouple the enable/disable operation of the HDMI audio wrapper from
audio start/stop. Otherwise, an audio FIFO underflow may occur. The
audio wrapper enablement must be done after configuration and
before audio playback is started.
Signed-off-by: Axel Castaneda Gonzalez <x0055901@ti.com>
Signed-off-by: Ricardo Neri <ricardo.neri@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss_features.c')
-rw-r--r-- | drivers/video/omap2/dss/dss_features.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dss_features.c b/drivers/video/omap2/dss/dss_features.c index 234ed8ad89ea..13b45af5e89d 100644 --- a/drivers/video/omap2/dss/dss_features.c +++ b/drivers/video/omap2/dss/dss_features.c @@ -577,6 +577,8 @@ static const struct ti_hdmi_ip_ops omap4_hdmi_functions = { defined(CONFIG_SND_OMAP_SOC_OMAP4_HDMI_MODULE) .audio_enable = ti_hdmi_4xxx_wp_audio_enable, .audio_disable = ti_hdmi_4xxx_wp_audio_disable, + .audio_start = ti_hdmi_4xxx_audio_start, + .audio_stop = ti_hdmi_4xxx_audio_stop, #endif }; |