mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 06:29:51 -04:00
20 lines
390 B
C
20 lines
390 B
C
/* $NetBSD: ubt_at_usb.c,v 1.4 2010/03/26 15:51:55 pooka Exp $ */
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/types.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/device.h>
|
|
#include <sys/kmem.h>
|
|
|
|
#include "ioconf.c"
|
|
|
|
#include "rump_private.h"
|
|
#include "rump_dev_private.h"
|
|
|
|
RUMP_COMPONENT(RUMP_COMPONENT_DEV)
|
|
{
|
|
|
|
config_init_component(cfdriver_ioconf_ubt,
|
|
cfattach_ioconf_ubt, cfdata_ioconf_ubt);
|
|
}
|