Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb Fix typo in last commit.



details:   https://anonhg.NetBSD.org/src/rev/203d46aa43a9
branches:  trunk
changeset: 520098:203d46aa43a9
user:      augustss <augustss%NetBSD.org@localhost>
date:      Wed Jan 02 20:58:12 2002 +0000

description:
Fix typo in last commit.

diffstat:

 sys/dev/usb/usb.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 4ad8c8a14ca0 -r 203d46aa43a9 sys/dev/usb/usb.c
--- a/sys/dev/usb/usb.c Wed Jan 02 20:55:58 2002 +0000
+++ b/sys/dev/usb/usb.c Wed Jan 02 20:58:12 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usb.c,v 1.62 2002/01/02 20:55:58 augustss Exp $        */
+/*     $NetBSD: usb.c,v 1.63 2002/01/02 20:58:12 augustss Exp $        */
 
 /*
  * Copyright (c) 1998, 2002 The NetBSD Foundation, Inc.
@@ -44,7 +44,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.62 2002/01/02 20:55:58 augustss Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.63 2002/01/02 20:58:12 augustss Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -96,7 +96,7 @@
        usbd_bus_handle sc_bus;         /* USB controller */
        struct usbd_port sc_port;       /* dummy port for root hub */
 
-       usb_proc_ptr    *sc_event_thread;
+       usb_proc_ptr    sc_event_thread;
 
        char            sc_dying;
 };
@@ -109,7 +109,7 @@
 Static void    usb_create_event_thread(void *);
 Static void    usb_event_thread(void *);
 Static void    usb_task_thread(void *);
-Static usb_proc_ptr *usb_task_thread_proc = NULL;
+Static usb_proc_ptr usb_task_thread_proc = NULL;
 
 #define USB_MAX_EVENTS 100
 struct usb_event_q {



Home | Main Index | Thread Index | Old Index