library/schedule: Renumber UUIDs

The library code edf_sched and ll_sched_lib components were generated
with UUIDs that collide with the core EDF scheduler component, which
is illegal.  This is test code though and doesn't need to match
external artifacts, so just renumber.

Signed-off-by: Andy Ross <andyross@google.com>
This commit is contained in:
Andy Ross 2024-06-25 15:20:44 -07:00 committed by Liam Girdwood
parent a3e72be7dc
commit 8d32cef155
2 changed files with 7 additions and 7 deletions

View File

@ -13,11 +13,11 @@
/* scheduler testbench definition */
/* 77de2074-828c-4044-a40b-420b72749e8b */
SOF_DEFINE_UUID("edf_sched", edf_sched_uuid, 0x77de2074, 0x828c, 0x4044,
0xa4, 0x0b, 0x42, 0x0b, 0x72, 0x74, 0x9e, 0x8b);
/* 5dbc3672-e290-43d8-91f8-81aafe453d5b */
SOF_DEFINE_UUID("edf_sched_lib", edf_sched_lib_uuid, 0x5dbc3672, 0xe290, 0x43d8,
0x91, 0xf8, 0x81, 0xaa, 0xfe, 0x45, 0x3d, 0x5b);
DECLARE_TR_CTX(edf_tr, SOF_UUID(edf_sched_uuid), LOG_LEVEL_INFO);
DECLARE_TR_CTX(edf_tr, SOF_UUID(edf_sched_lib_uuid), LOG_LEVEL_INFO);
struct edf_schedule_data {
struct list_item list; /* list of tasks in priority queue */

View File

@ -20,9 +20,9 @@
/* scheduler testbench definition */
/* 77de2074-828c-4044-a40b-420b72749e8b */
SOF_DEFINE_UUID("ll_sched_lib", ll_sched_lib_uuid, 0x77de2074, 0x828c, 0x4044,
0xa4, 0x0b, 0x42, 0x0b, 0x72, 0x74, 0x9e, 0x8b);
/* 9f130ed8-2bbf-421c-836a-d5269147c9e7 */
SOF_DEFINE_UUID("ll_sched_lib", ll_sched_lib_uuid, 0x9f130ed8, 0x2bbf, 0x421c,
0x83, 0x6a, 0xd5, 0x26, 0x91, 0x47, 0xc9, 0xe7);
DECLARE_TR_CTX(ll_tr, SOF_UUID(ll_sched_lib_uuid), LOG_LEVEL_INFO);