summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/local/cryptodev_if.c
blob: 9b948816a53073006171b762e8877aeff760dc9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#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 <rtems/bsd/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>

struct kobj_method cryptodev_newsession_method_default = {
	&cryptodev_newsession_desc, (kobjop_t) kobj_error_method
};

struct kobjop_desc cryptodev_newsession_desc = {
	0, &cryptodev_newsession_method_default
};

struct kobj_method cryptodev_freesession_method_default = {
	&cryptodev_freesession_desc, (kobjop_t) kobj_error_method
};

struct kobjop_desc cryptodev_freesession_desc = {
	0, &cryptodev_freesession_method_default
};

struct kobj_method cryptodev_process_method_default = {
	&cryptodev_process_desc, (kobjop_t) kobj_error_method
};

struct kobjop_desc cryptodev_process_desc = {
	0, &cryptodev_process_method_default
};

struct kobj_method cryptodev_kprocess_method_default = {
	&cryptodev_kprocess_desc, (kobjop_t) kobj_error_method
};

struct kobjop_desc cryptodev_kprocess_desc = {
	0, &cryptodev_kprocess_method_default
};