cafd270356
Add all the session management operations. Signed-off-by: Nagadheeraj Rottela <rnagadheeraj@marvell.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
20 lines
382 B
Meson
20 lines
382 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(C) 2019 Marvell International Ltd.
|
|
|
|
if not is_linux
|
|
build = false
|
|
reason = 'only supported on Linux'
|
|
endif
|
|
|
|
deps += ['bus_pci']
|
|
allow_experimental_apis = true
|
|
sources = files(
|
|
'nitrox_device.c',
|
|
'nitrox_hal.c',
|
|
'nitrox_logs.c',
|
|
'nitrox_sym.c',
|
|
'nitrox_sym_capabilities.c',
|
|
'nitrox_sym_reqmgr.c',
|
|
'nitrox_qp.c'
|
|
)
|