blob: f103c32eda3d57428a24c8a4327aadbc1892a165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) 2019 Marvell International Ltd.
*/
#ifndef _OTX2_CRYPTODEV_CAPABILITIES_H_
#define _OTX2_CRYPTODEV_CAPABILITIES_H_
#include <rte_cryptodev.h>
/*
* Get capabilities list for the device
*
*/
const struct rte_cryptodev_capabilities *otx2_cpt_capabilities_get(void);
#endif /* _OTX2_CRYPTODEV_CAPABILITIES_H_ */
|