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