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

platform: posix: dma: place api in iterable section #53

Closed
Closed
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion app/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.21.0)
cmake_minimum_required(VERSION 3.20.0)

find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
project(sample_sof)
Expand Down
2 changes: 0 additions & 2 deletions app/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ tests:
- intel_adsp/cavs25 # TGL
- intel_adsp/ace15_mtpm # MTL
- intel_adsp/ace20_lnl
- intel_adsp/ace30/ptl
- intel_adsp/ace30/ptl/sim
- imx8qm_mek/mimx8qm6/adsp
- imx8qxp_mek/mimx8qx6/adsp
- imx8mp_evk/mimx8ml8/adsp
Expand Down
2 changes: 1 addition & 1 deletion src/platform/posix/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static int pzdma_init(const struct device *dev)

/* Zephyr device definition */

static const struct dma_driver_api pzdma_api = {
static DEVICE_API(dma, pzdma_api) = {
.config = pzdma_config,
.reload = pzdma_reload,
.start = pzdma_start,
Expand Down