Home | History | Annotate | Line # | Download | only in libumass
umass_component.c revision 1.2.18.1
      1 /*	$NetBSD: umass_component.c,v 1.2.18.1 2019/06/10 22:09:51 christos Exp $	*/
      2 
      3 #include <sys/cdefs.h>
      4 __KERNEL_RCSID(0, "$NetBSD: umass_component.c,v 1.2.18.1 2019/06/10 22:09:51 christos 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