diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-08 04:30:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-08 04:30:18 +0000 |
commit | 1ac606facfd62a9f83602e733559249f6d15dafd (patch) | |
tree | f420d26fb82abcfd432e7f88ad940184c0549634 /sys/dev/usb/ucom.c | |
parent | 4c13dda4b31dda125ae92b7501baf36dc642fdf0 (diff) |
no need to spit out portno twice
Diffstat (limited to 'sys/dev/usb/ucom.c')
-rw-r--r-- | sys/dev/usb/ucom.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/usb/ucom.c b/sys/dev/usb/ucom.c index 7da75d0aeb3..4233cb57650 100644 --- a/sys/dev/usb/ucom.c +++ b/sys/dev/usb/ucom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ucom.c,v 1.25 2005/01/28 22:38:39 djm Exp $ */ +/* $OpenBSD: ucom.c,v 1.26 2005/04/08 04:30:17 deraadt Exp $ */ /* $NetBSD: ucom.c,v 1.49 2003/01/01 00:10:25 thorpej Exp $ */ /* @@ -170,8 +170,6 @@ USB_ATTACH(ucom) struct ucom_attach_args *uca = aux; struct tty *tp; - if (uca->portno != UCOM_UNK_PORTNO) - printf(": portno %d", uca->portno); if (uca->info != NULL) printf(", %s", uca->info); printf("\n"); |