Home | History | Annotate | Line # | Download | only in libumass
umass_component.c revision 1.1.10.2
      1 /*	$NetBSD: umass_component.c,v 1.1.10.2 2014/08/20 00:04:38 tls Exp $	*/
      2 
      3 #include <sys/param.h>
      4 #include <sys/conf.h>
      5 #include <sys/device.h>
      6 #include <sys/kmem.h>
      7 #include <sys/stat.h>
      8 
      9 #include "ioconf.c"
     10 
     11 #include "rump_private.h"
     12 #include "rump_dev_private.h"
     13 
     14 RUMP_COMPONENT(RUMP_COMPONENT_DEV)
     15 {
     16 
     17 	config_init_component(cfdriver_ioconf_umass,
     18 	    cfattach_ioconf_umass, cfdata_ioconf_umass);
     19 }
     20