source: rtems-libbsd/rtemsbsd/local/miibus_if.c @ e58b898

55-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since e58b898 was f244de9, checked in by Sebastian Huber <sebastian.huber@…>, on 11/06/13 at 07:56:38

Rename rtems-bsd-config.h

Rename rtems-bsd-config.h in rtems-bsd-kernel-space.h.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#include <machine/rtems-bsd-kernel-space.h>
2
3/*
4 * This file is produced automatically.
5 * Do not modify anything in here by hand.
6 *
7 * Created from source file
8 *   dev/mii/miibus_if.m
9 * with
10 *   makeobjops.awk
11 *
12 * See the source file for legal information
13 */
14
15#include <rtems/bsd/sys/param.h>
16#include <sys/queue.h>
17#include <sys/kernel.h>
18#include <sys/kobj.h>
19#include <sys/bus.h>
20#include <rtems/bsd/local/miibus_if.h>
21
22struct kobj_method miibus_readreg_method_default = {
23        &miibus_readreg_desc, (kobjop_t) kobj_error_method
24};
25
26struct kobjop_desc miibus_readreg_desc = {
27        0, &miibus_readreg_method_default
28};
29
30struct kobj_method miibus_writereg_method_default = {
31        &miibus_writereg_desc, (kobjop_t) kobj_error_method
32};
33
34struct kobjop_desc miibus_writereg_desc = {
35        0, &miibus_writereg_method_default
36};
37
38struct kobj_method miibus_statchg_method_default = {
39        &miibus_statchg_desc, (kobjop_t) kobj_error_method
40};
41
42struct kobjop_desc miibus_statchg_desc = {
43        0, &miibus_statchg_method_default
44};
45
46struct kobj_method miibus_linkchg_method_default = {
47        &miibus_linkchg_desc, (kobjop_t) kobj_error_method
48};
49
50struct kobjop_desc miibus_linkchg_desc = {
51        0, &miibus_linkchg_method_default
52};
53
54struct kobj_method miibus_mediainit_method_default = {
55        &miibus_mediainit_desc, (kobjop_t) kobj_error_method
56};
57
58struct kobjop_desc miibus_mediainit_desc = {
59        0, &miibus_mediainit_method_default
60};
61
Note: See TracBrowser for help on using the repository browser.