9fdef0cc23
Add Nitrox symmetric cryptodev with following operations, - dev_configure - dev_start - dev_stop - dev_close - dev_infos_get Signed-off-by: Nagadheeraj Rottela <rnagadheeraj@marvell.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
14 lines
304 B
C
14 lines
304 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(C) 2019 Marvell International Ltd.
|
|
*/
|
|
|
|
#ifndef _NITROX_SYM_H_
|
|
#define _NITROX_SYM_H_
|
|
|
|
struct nitrox_device;
|
|
|
|
int nitrox_sym_pmd_create(struct nitrox_device *ndev);
|
|
int nitrox_sym_pmd_destroy(struct nitrox_device *ndev);
|
|
|
|
#endif /* _NITROX_SYM_H_ */
|