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