Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb Dereferencing struct lwp * needs sys/lwp.h.



details:   https://anonhg.NetBSD.org/src/rev/2eff9b2fc069
branches:  trunk
changeset: 758757:2eff9b2fc069
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Mon Nov 15 06:01:07 2010 +0000

description:
Dereferencing struct lwp * needs sys/lwp.h.

diffstat:

 sys/dev/usb/ucycom.c |  5 +++--
 sys/dev/usb/uhso.c   |  5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diffs (52 lines):

diff -r f94a3d31c188 -r 2eff9b2fc069 sys/dev/usb/ucycom.c
--- a/sys/dev/usb/ucycom.c      Mon Nov 15 05:59:57 2010 +0000
+++ b/sys/dev/usb/ucycom.c      Mon Nov 15 06:01:07 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ucycom.c,v 1.31 2010/11/03 22:34:23 dyoung Exp $       */
+/*     $NetBSD: ucycom.c,v 1.32 2010/11/15 06:01:07 uebayasi Exp $     */
 
 /*
  * Copyright (c) 2005 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ucycom.c,v 1.31 2010/11/03 22:34:23 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ucycom.c,v 1.32 2010/11/15 06:01:07 uebayasi Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -51,6 +51,7 @@
 #include <sys/file.h>
 #include <sys/vnode.h>
 #include <sys/kauth.h>
+#include <sys/lwp.h>
 
 #include <dev/usb/usb.h>
 #include <dev/usb/usbhid.h>
diff -r f94a3d31c188 -r 2eff9b2fc069 sys/dev/usb/uhso.c
--- a/sys/dev/usb/uhso.c        Mon Nov 15 05:59:57 2010 +0000
+++ b/sys/dev/usb/uhso.c        Mon Nov 15 06:01:07 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhso.c,v 1.2 2010/04/05 07:21:49 joerg Exp $   */
+/*     $NetBSD: uhso.c,v 1.3 2010/11/15 06:01:29 uebayasi Exp $        */
 
 /*-
  * Copyright (c) 2009 Iain Hibbert
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhso.c,v 1.2 2010/04/05 07:21:49 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhso.c,v 1.3 2010/11/15 06:01:29 uebayasi Exp $");
 
 #include "opt_inet.h"
 
@@ -55,6 +55,7 @@
 #include <sys/systm.h>
 #include <sys/tty.h>
 #include <sys/vnode.h>
+#include <sys/lwp.h>
 
 #include <net/bpf.h>
 #include <net/if.h>



Home | Main Index | Thread Index | Old Index