summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2012-12-31 04:25:46 +0000
committermiod <miod@openbsd.org>2012-12-31 04:25:46 +0000
commit79fe9f333a8137717167cb562c26b96e37f51d16 (patch)
treeb87e7bddb1678f667a784a429df1cf35334fd43b
parentList ucycom as a serial interface, not a human interface device. (diff)
downloadwireguard-openbsd-79fe9f333a8137717167cb562c26b96e37f51d16.tar.xz
wireguard-openbsd-79fe9f333a8137717167cb562c26b96e37f51d16.zip
Declare ucom as a DV_TTY class device, not DV_DULL; Alexander Polakov
-rw-r--r--sys/dev/usb/ucom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c
index e246023a1cd..c0ffe48580f 100644
--- a/sys/dev/usb/ucom.c
+++ b/sys/dev/usb/ucom.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ucom.c,v 1.55 2011/11/29 17:15:44 deraadt Exp $ */
+/* $OpenBSD: ucom.c,v 1.56 2012/12/31 04:25:46 miod Exp $ */
/* $NetBSD: ucom.c,v 1.49 2003/01/01 00:10:25 thorpej Exp $ */
/*
@@ -147,7 +147,7 @@ int ucom_detach(struct device *, int);
int ucom_activate(struct device *, int);
struct cfdriver ucom_cd = {
- NULL, "ucom", DV_DULL
+ NULL, "ucom", DV_TTY
};
const struct cfattach ucom_ca = {