mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 22:09:16 +08:00
46 lines
1022 B
C
46 lines
1022 B
C
#include <machine/rtems-bsd-kernel-space.h>
|
|
|
|
/*
|
|
* This file is produced automatically.
|
|
* Do not modify anything in here by hand.
|
|
*
|
|
* Created from source file
|
|
* opencrypto/cryptodev_if.m
|
|
* with
|
|
* makeobjops.awk
|
|
*
|
|
* See the source file for legal information
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/kobj.h>
|
|
#include <sys/malloc.h>
|
|
#include <opencrypto/cryptodev.h>
|
|
#include <rtems/bsd/local/cryptodev_if.h>
|
|
|
|
|
|
static int null_freesession(device_t dev,
|
|
crypto_session_t crypto_session)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
struct kobjop_desc cryptodev_newsession_desc = {
|
|
0, { &cryptodev_newsession_desc, (kobjop_t)kobj_error_method }
|
|
};
|
|
|
|
struct kobjop_desc cryptodev_freesession_desc = {
|
|
0, { &cryptodev_freesession_desc, (kobjop_t)null_freesession }
|
|
};
|
|
|
|
struct kobjop_desc cryptodev_process_desc = {
|
|
0, { &cryptodev_process_desc, (kobjop_t)kobj_error_method }
|
|
};
|
|
|
|
struct kobjop_desc cryptodev_kprocess_desc = {
|
|
0, { &cryptodev_kprocess_desc, (kobjop_t)kobj_error_method }
|
|
};
|
|
|