ASoC: Intel: update stream only on stream IPC msgs

Only update the stream when the IPC message type matches stream type.

Signed-off-by: Paweł Piskorski <pawel.piskorski@intel.com>
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Jie Yang <yang.jie@intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Paweł Piskorski 2014-08-01 23:10:43 +08:00 коммит произвёл Mark Brown
Родитель 94ce33456d
Коммит d6e08617cb
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -782,7 +782,8 @@ static int hsw_process_reply(struct sst_hsw *hsw, u32 header)
} }
/* update any stream states */ /* update any stream states */
hsw_stream_update(hsw, msg); if (msg_get_global_type(header) == IPC_GLB_STREAM_MESSAGE)
hsw_stream_update(hsw, msg);
/* wake up and return the error if we have waiters on this message ? */ /* wake up and return the error if we have waiters on this message ? */
list_del(&msg->list); list_del(&msg->list);