Home | History | Annotate | Line # | Download | only in libumass
umass_component.c revision 1.1.12.1
      1  1.1.12.1  skrll /*	$NetBSD: umass_component.c,v 1.1.12.1 2016/03/19 11:30:35 skrll Exp $	*/
      2       1.1  pooka 
      3       1.1  pooka #include <sys/param.h>
      4       1.1  pooka #include <sys/conf.h>
      5       1.1  pooka #include <sys/device.h>
      6       1.1  pooka #include <sys/kmem.h>
      7       1.1  pooka #include <sys/stat.h>
      8       1.1  pooka 
      9       1.1  pooka #include "ioconf.c"
     10       1.1  pooka 
     11  1.1.12.1  skrll #include <rump-sys/kern.h>
     12       1.1  pooka 
     13       1.1  pooka RUMP_COMPONENT(RUMP_COMPONENT_DEV)
     14       1.1  pooka {
     15       1.1  pooka 
     16       1.1  pooka 	config_init_component(cfdriver_ioconf_umass,
     17       1.1  pooka 	    cfattach_ioconf_umass, cfdata_ioconf_umass);
     18       1.1  pooka }
     19