Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CIONLY] Checking for new crashes after the update #9692

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/audio/kpb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2405,11 +2405,11 @@ static void devicelist_reset(struct device_list *devlist, bool remove_items)
{
/* clear items */
if (remove_items) {
for (int i = 0; i < DEVICE_LIST_SIZE; i++)
for (int i = 0; i < devlist->count; i++)
*devlist->devs[i] = NULL;
}
/* zero the pointers */
for (int i = 0; i < DEVICE_LIST_SIZE; i++)
for (int i = 0; i < devlist->count; i++)
devlist->devs[i] = NULL;

devlist->count = 0;
Expand Down
2 changes: 0 additions & 2 deletions src/drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

menu "Drivers"

rsource "intel/Kconfig"

rsource "dw/Kconfig"

rsource "imx/Kconfig"
Expand Down
10 changes: 0 additions & 10 deletions src/drivers/intel/Kconfig

This file was deleted.

2 changes: 2 additions & 0 deletions src/include/sof/audio/component.h
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,8 @@ static inline struct comp_dev *comp_alloc(const struct comp_driver *drv,
dev->size = bytes;
dev->drv = drv;
dev->state = COMP_STATE_INIT;
list_init(&dev->bsink_list);
list_init(&dev->bsource_list);
memcpy_s(&dev->tctx, sizeof(struct tr_ctx),
trace_comp_drv_get_tr_ctx(dev->drv), sizeof(struct tr_ctx));

Expand Down
87 changes: 0 additions & 87 deletions src/include/sof/drivers/mn.h

This file was deleted.

1 change: 0 additions & 1 deletion src/platform/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ config CAVS
bool
default n
select INTEL
select INTEL_MN
select SOF_ZEPHYR_NO_SOF_CLOCK

config CAVS_VERSION_2_5
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ manifest:

- name: zephyr
repo-path: zephyr
revision: cbb6199e679c50c75d3ed090852b4993e8b06a8a
revision: a14ae39e7447321db35d8fd84b282fef4b098c49
remote: zephyrproject

# Import some projects listed in zephyr/west.yml@revision
Expand Down
Loading