mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 23:20:29 -04:00
20 lines
394 B
C
20 lines
394 B
C
/* $NetBSD: component.c,v 1.1 2010/08/23 20:49:53 pooka Exp $ */
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/device.h>
|
|
#include <sys/kmem.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include "ioconf.c"
|
|
|
|
#include "rump_private.h"
|
|
#include "rump_dev_private.h"
|
|
|
|
RUMP_COMPONENT(RUMP_COMPONENT_DEV)
|
|
{
|
|
|
|
config_init_component(cfdriver_ioconf_umass,
|
|
cfattach_ioconf_umass, cfdata_ioconf_umass);
|
|
}
|