Skip to content

Commit 3da7739

Browse files
Chao Songkv2019i
authored andcommitted
config: correct module config load_type
The load_type in extended manifest is used to indicate if a module is a built-in module(0) or a loadable(1) module. We don't have loadable module yet, so load_type should be zero for all modules. Signed-off-by: Chao Song <chao.song@linux.intel.com>
1 parent bc7d49d commit 3da7739

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

config/mtl.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ count = 15
5656
affinity_mask = "0x1"
5757
instance_count = "1"
5858
domain_types = "0"
59-
load_type = "1"
59+
load_type = "0"
6060
module_type = "0"
6161
auto_start = "0"
6262

@@ -66,7 +66,7 @@ count = 15
6666
affinity_mask = "3"
6767
instance_count = "1"
6868
domain_types = "0"
69-
load_type = "1"
69+
load_type = "0"
7070
module_type = "0"
7171
auto_start = "0"
7272

@@ -306,7 +306,7 @@ count = 15
306306
affinity_mask = "0x1"
307307
instance_count = "15"
308308
domain_types = "0"
309-
load_type = "1"
309+
load_type = "0"
310310
module_type = "5"
311311
auto_start = "0"
312312
sched_caps = [1, 0x00008000]
@@ -345,7 +345,7 @@ count = 15
345345
affinity_mask = "0x1"
346346
instance_count = "15"
347347
domain_types = "0"
348-
load_type = "1"
348+
load_type = "0"
349349
module_type = "6"
350350
auto_start = "0"
351351
sched_caps = [1, 0x00008000]
@@ -364,7 +364,7 @@ count = 15
364364
affinity_mask = "0x1"
365365
instance_count = "1"
366366
domain_types = "0"
367-
load_type = "1"
367+
load_type = "0"
368368
module_type = "9"
369369
auto_start = "0"
370370
sched_caps = [1, 0x00008000]
@@ -382,7 +382,7 @@ count = 15
382382
affinity_mask = "0x1"
383383
instance_count = "1"
384384
domain_types = "0"
385-
load_type = "1"
385+
load_type = "0"
386386
module_type = "0xB"
387387
auto_start = "0"
388388
sched_caps = [1, 0x00008000]

config/tgl-cavs.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ count = 12
5959
affinity_mask = "0x1"
6060
instance_count = "1"
6161
domain_types = "0"
62-
load_type = "1"
62+
load_type = "0"
6363
module_type = "0"
6464
auto_start = "0"
6565

@@ -69,7 +69,7 @@ count = 12
6969
affinity_mask = "3"
7070
instance_count = "1"
7171
domain_types = "0"
72-
load_type = "1"
72+
load_type = "0"
7373
module_type = "0"
7474
auto_start = "0"
7575

config/tgl-h-cavs.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ count = 8
5959
affinity_mask = "0x1"
6060
instance_count = "1"
6161
domain_types = "0"
62-
load_type = "1"
62+
load_type = "0"
6363
module_type = "0"
6464
auto_start = "0"
6565

@@ -69,7 +69,7 @@ count = 8
6969
affinity_mask = "3"
7070
instance_count = "1"
7171
domain_types = "0"
72-
load_type = "1"
72+
load_type = "0"
7373
module_type = "0"
7474
auto_start = "0"
7575

0 commit comments

Comments
 (0)