1 /* $NetBSD: umass_component.c,v 1.2 2016/01/26 23:12:16 pooka 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-sys/kern.h> 12 13 RUMP_COMPONENT(RUMP_COMPONENT_DEV) 14 { 15 16 config_init_component(cfdriver_ioconf_umass, 17 cfattach_ioconf_umass, cfdata_ioconf_umass); 18 } 19