mirror of https://github.com/thesofproject/sof.git
testbench: fix UUID declaration for file
Use DECLARE_SOF_RT_UUID and fix the uuid name in the comp_drv for the file component. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
This commit is contained in:
parent
6c3bfaeff3
commit
ebc222dab5
|
@ -24,8 +24,8 @@
|
||||||
#include "testbench/file.h"
|
#include "testbench/file.h"
|
||||||
|
|
||||||
/* bfc7488c-75aa-4ce8-9bde-d8da08a698c2 */
|
/* bfc7488c-75aa-4ce8-9bde-d8da08a698c2 */
|
||||||
DECLARE_SOF_UUID("file", file_uuid, 0xbfc7488c, 0x75aa, 0x4ce8,
|
DECLARE_SOF_RT_UUID("file", file_uuid, 0xbfc7488c, 0x75aa, 0x4ce8,
|
||||||
0x9d, 0xbe, 0xd8, 0xda, 0x08, 0xa6, 0x98, 0xc2);
|
0x9d, 0xbe, 0xd8, 0xda, 0x08, 0xa6, 0x98, 0xc2);
|
||||||
DECLARE_TR_CTX(file_tr, SOF_UUID(file_uuid), LOG_LEVEL_INFO);
|
DECLARE_TR_CTX(file_tr, SOF_UUID(file_uuid), LOG_LEVEL_INFO);
|
||||||
|
|
||||||
static const struct comp_driver comp_file_dai;
|
static const struct comp_driver comp_file_dai;
|
||||||
|
@ -903,7 +903,7 @@ static int file_get_hw_params(struct comp_dev *dev,
|
||||||
|
|
||||||
static const struct comp_driver comp_file_host = {
|
static const struct comp_driver comp_file_host = {
|
||||||
.type = SOF_COMP_HOST,
|
.type = SOF_COMP_HOST,
|
||||||
.uid = SOF_UUID(file_tr),
|
.uid = SOF_RT_UUID(file_uuid),
|
||||||
.tctx = &file_tr,
|
.tctx = &file_tr,
|
||||||
.ops = {
|
.ops = {
|
||||||
.create = file_new,
|
.create = file_new,
|
||||||
|
@ -920,7 +920,7 @@ static const struct comp_driver comp_file_host = {
|
||||||
|
|
||||||
static const struct comp_driver comp_file_dai = {
|
static const struct comp_driver comp_file_dai = {
|
||||||
.type = SOF_COMP_DAI,
|
.type = SOF_COMP_DAI,
|
||||||
.uid = SOF_UUID(file_tr),
|
.uid = SOF_RT_UUID(file_uuid),
|
||||||
.tctx = &file_tr,
|
.tctx = &file_tr,
|
||||||
.ops = {
|
.ops = {
|
||||||
.create = file_new,
|
.create = file_new,
|
||||||
|
|
Loading…
Reference in New Issue