numam-dpdk/drivers/dma/dpaa/meson.build
Gagandeep Singh 583f373297 dma/dpaa: introduce DPAA DMA driver skeleton
The DPAA DMA  driver is an implementation of the dmadev APIs,
that provide means to initiate a DMA transaction from CPU.
The initiated DMA is performed without CPU being involved
in the actual DMA transaction. This is achieved via using
the QDMA controller of DPAA SoC.

Signed-off-by: Gagandeep Singh <g.singh@nxp.com>
2021-11-10 13:48:38 +01:00

15 lines
287 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2021 NXP
if not is_linux
build = false
reason = 'only supported on linux'
endif
deps += ['dmadev', 'bus_dpaa']
sources = files('dpaa_qdma.c')
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
endif