diff options
Diffstat (limited to 'sys/powerpc/aim/nexus.c')
-rw-r--r-- | sys/powerpc/aim/nexus.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/powerpc/aim/nexus.c b/sys/powerpc/aim/nexus.c index 0d9d0b6700ab..d92090b9cf4f 100644 --- a/sys/powerpc/aim/nexus.c +++ b/sys/powerpc/aim/nexus.c @@ -70,7 +70,6 @@ #include <machine/bus.h> #include <machine/frame.h> #include <machine/intr_machdep.h> -#include <machine/nexusvar.h> #include <machine/resource.h> #include <sys/rman.h> @@ -90,6 +89,13 @@ static MALLOC_DEFINE(M_NEXUS, "nexus", "nexus device information"); +enum nexus_ivars { + NEXUS_IVAR_NODE, + NEXUS_IVAR_NAME, + NEXUS_IVAR_DEVICE_TYPE, + NEXUS_IVAR_COMPATIBLE, +}; + struct nexus_devinfo { phandle_t ndi_node; /* Some common properties. */ |