topology: change virtual widget types to non-DSP ones

This means they won't be sent to firmware for components creation.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
This commit is contained in:
Keyon Jie 2018-05-24 10:14:27 +08:00 committed by Liam Girdwood
parent 28ab096452
commit 2c31bbdc20
1 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ dnl VIRTUAL_DAPM_ROUTE_OUT(name, dai type, dai index, direction, index)
define(`VIRTUAL_DAPM_ROUTE_OUT',
`SectionWidget.STR($1) {'
` index STR($5)'
` type "aif_out"'
` type "output"'
` no_pm "true"'
`}'
`SectionGraph.STR($2) {'
@ -89,7 +89,7 @@ dnl VIRTUAL_DAPM_ROUTE_IN(name, dai type, dai index, direction, index)
define(`VIRTUAL_DAPM_ROUTE_IN',
`SectionWidget.STR($1) {'
` index STR($5)'
` type "aif_in"'
` type "input"'
` no_pm "true"'
`}'
`SectionGraph.STR($2) {'
@ -104,7 +104,7 @@ dnl VIRTUAL_WIDGET(name, index)
define(`VIRTUAL_WIDGET',
`SectionWidget.STR($1) {'
` index STR($2)'
` type "mixer"'
` type "out_drv"'
` no_pm "true"'
`}')