mux: trace: fix uuid name assigned to demux driver

demux_uuid should be assgigned to comp_demux.

Signed-off-by: Marcin Maka <marcin.maka@linux.intel.com>
This commit is contained in:
Marcin Maka 2020-04-26 20:00:00 +02:00 committed by Tomasz Lauda
parent af38b20bc8
commit 58977add50
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
static const struct comp_driver comp_mux;
/* c4b26868-1430-470e-a089-15d1c77f851a */
DECLARE_SOF_UUID("mux", mux_uuid, 0xc4b26868, 0x1430, 0x470e,
DECLARE_SOF_UUID("demux", demux_uuid, 0xc4b26868, 0x1430, 0x470e,
0xa0, 0x89, 0x15, 0xd1, 0xc7, 0x7f, 0x85, 0x1a);
static int mux_set_values(struct comp_dev *dev, struct comp_data *cd,
@ -514,7 +514,7 @@ static SHARED_DATA struct comp_driver_info comp_mux_info = {
static const struct comp_driver comp_demux = {
.type = SOF_COMP_DEMUX,
.uid = SOF_UUID(mux_uuid),
.uid = SOF_UUID(demux_uuid),
.ops = {
.create = mux_new,
.free = mux_free,