Module Name: src
Committed By: jakllsch
Date: Mon Dec 19 19:39:51 UTC 2011
Modified Files:
src/sys/dev/usb: ucom.c
Log Message:
It's tp->t_dev, not tp->tp_dev. Corrects commit prior to previous.
To generate a diff of this commit:
cvs rdiff -u -r1.90 -r1.91 src/sys/dev/usb/ucom.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/usb/ucom.c
diff -u src/sys/dev/usb/ucom.c:1.90 src/sys/dev/usb/ucom.c:1.91
--- src/sys/dev/usb/ucom.c:1.90 Mon Dec 19 19:34:52 2011
+++ src/sys/dev/usb/ucom.c Mon Dec 19 19:39:51 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: ucom.c,v 1.90 2011/12/19 19:34:52 jakllsch Exp $ */
+/* $NetBSD: ucom.c,v 1.91 2011/12/19 19:39:51 jakllsch Exp $ */
/*
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.90 2011/12/19 19:34:52 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.91 2011/12/19 19:39:51 jakllsch Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1037,7 +1037,7 @@ ucomstop(struct tty *tp, int flag)
{
#if 0
/*struct ucom_softc *sc =
- device_lookup_private(&ucom_cd, UCOMUNIT(tp->tp_dev));*/
+ device_lookup_private(&ucom_cd, UCOMUNIT(tp->t_dev));*/
int s;
s = spltty();