mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-16 10:26:42 +08:00
30 lines
662 B
C
30 lines
662 B
C
#include <freebsd/machine/rtems-bsd-config.h>
|
|
|
|
/*
|
|
* This file is produced automatically.
|
|
* Do not modify anything in here by hand.
|
|
*
|
|
* Created from source file
|
|
* dev/usb/usb_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/bus.h>
|
|
#include <freebsd/local/usb_if.h>
|
|
|
|
struct kobj_method usb_handle_request_method_default = {
|
|
&usb_handle_request_desc, (kobjop_t) kobj_error_method
|
|
};
|
|
|
|
struct kobjop_desc usb_handle_request_desc = {
|
|
0, &usb_handle_request_method_default
|
|
};
|
|
|