6b6ca75191
This patch moves the internal symbols to INTERNAL sections so that any change in them is not reported as ABI breakage. Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Ray Kinsella <mdr@ashroe.eu>
20 lines
389 B
C
20 lines
389 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2019 NXP
|
|
*
|
|
*/
|
|
|
|
#ifndef _DPAA_SEC_EVENT_H_
|
|
#define _DPAA_SEC_EVENT_H_
|
|
|
|
__rte_internal
|
|
int dpaa_sec_eventq_attach(const struct rte_cryptodev *dev,
|
|
int qp_id,
|
|
uint16_t ch_id,
|
|
const struct rte_event *event);
|
|
|
|
__rte_internal
|
|
int dpaa_sec_eventq_detach(const struct rte_cryptodev *dev,
|
|
int qp_id);
|
|
|
|
#endif /* _DPAA_SEC_EVENT_H_ */
|