blob: 0d101f6c4d0ff9eb3f325697119e09936630fb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $NetBSD: usb_at_ugenhc.c,v 1.3 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 <sys/stat.h>
#include "ioconf.c"
#include "rump_private.h"
#include "rump_dev_private.h"
void tty_init(void);
RUMP_COMPONENT(RUMP_COMPONENT_DEV)
{
config_init_component(cfdriver_ioconf_usb,
cfattach_ioconf_usb, cfdata_ioconf_usb);
}
|