1 /* $NetBSD: umass_component.c,v 1.1 2014/03/13 01:54:59 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_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