mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 14:39:47 -04:00
29 lines
657 B
C
29 lines
657 B
C
/* $NetBSD: ulpt_at_usb.c,v 1.5 2010/03/26 15:51:55 pooka Exp $ */
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/device.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include "ioconf.c"
|
|
|
|
#include "rump_private.h"
|
|
#include "rump_dev_private.h"
|
|
#include "rump_vfs_private.h"
|
|
|
|
RUMP_COMPONENT(RUMP_COMPONENT_DEV)
|
|
{
|
|
extern struct cdevsw ulpt_cdevsw;
|
|
devmajor_t bmaj, cmaj;
|
|
|
|
config_init_component(cfdriver_ioconf_ulpt,
|
|
cfattach_ioconf_ulpt, cfdata_ioconf_ulpt);
|
|
|
|
bmaj = cmaj = -1;
|
|
FLAWLESSCALL(devsw_attach("ulpt", NULL, &bmaj, &ulpt_cdevsw, &cmaj));
|
|
|
|
FLAWLESSCALL(rump_vfs_makedevnodes(S_IFCHR, "/dev/ulpt", '0',
|
|
cmaj, 0, 1));
|
|
}
|