Move files to match FreeBSD layout

This commit is contained in:
Sebastian Huber
2013-10-09 22:42:09 +02:00
parent e8b7066dab
commit bceabc95c1
1246 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
#include <freebsd/machine/rtems-bsd-config.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 <freebsd/sys/param.h>
#include <freebsd/sys/queue.h>
#include <freebsd/sys/kernel.h>
#include <freebsd/sys/kobj.h>
#include <freebsd/sys/malloc.h>
#include <freebsd/opencrypto/cryptodev.h>
#include <freebsd/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
};