Home | History | Annotate | Line # | Download | only in libumass
      1 /*	$NetBSD: umass_component.c,v 1.5 2019/01/27 09:19:37 rin Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 __KERNEL_RCSID(0, "$NetBSD: umass_component.c,v 1.5 2019/01/27 09:19:37 rin Exp $");
      5 
      6 #include <sys/param.h>
      7 #include <sys/conf.h>
      8 #include <sys/device.h>
      9 #include <sys/kmem.h>
     10 #include <sys/stat.h>
     11 
     12 #include "ioconf.c"
     13 
     14 #include <rump-sys/kern.h>
     15 
     16 RUMP_COMPONENT(RUMP_COMPONENT_DEV)
     17 {
     18 
     19 	config_init_component(cfdriver_ioconf_umass,
     20 	    cfattach_ioconf_umass, cfdata_ioconf_umass);
     21 }
     22