Source-Changes-HG archive

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

[src/jmcneill-usbmp]: src/sys/dev/usb copyright maintenence.



details:   https://anonhg.NetBSD.org/src/rev/da14b30c742c
branches:  jmcneill-usbmp
changeset: 771813:da14b30c742c
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sat Feb 25 10:26:23 2012 +0000

description:
copyright maintenence.

diffstat:

 sys/dev/usb/TODO.usbmp     |   8 ++++----
 sys/dev/usb/ehci.c         |  10 +++++-----
 sys/dev/usb/ohci.c         |   8 ++++----
 sys/dev/usb/uhci.c         |   8 ++++----
 sys/dev/usb/uhidev.c       |   8 ++++----
 sys/dev/usb/umass_scsipi.c |   8 ++++----
 sys/dev/usb/umidi.c        |  11 ++++++-----
 sys/dev/usb/umidivar.h     |   7 ++++---
 sys/dev/usb/usb.c          |   8 ++++----
 sys/dev/usb/usbdi.c        |   8 ++++----
 sys/dev/usb/usbdivar.h     |   6 +++---
 11 files changed, 46 insertions(+), 44 deletions(-)

diffs (292 lines):

diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/TODO.usbmp
--- a/sys/dev/usb/TODO.usbmp    Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/TODO.usbmp    Sat Feb 25 10:26:23 2012 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO.usbmp,v 1.1.2.1 2012/02/25 07:59:03 mrg Exp $
+$NetBSD: TODO.usbmp,v 1.1.2.2 2012/02/25 10:26:23 mrg Exp $
 
 
 the majority of the USB MP device interface is documented in usbdivar.h.
@@ -134,9 +134,9 @@
   - ugen
   - pseye
   - uvideo
-  - auvitek
-  - emdtv
-  - ubt
+  - auvitek            ? (must take kernel lock for scsipi)
+  - emdtv              ? (must take kernel lock for scsipi)
+  - ubt                        ? (must take kernel lock for scsipi)
   - aubtfwl
   - u3ginit
 ucom attachments:
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c        Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/ehci.c        Sat Feb 25 10:26:23 2012 +0000
@@ -1,13 +1,13 @@
-/*     $NetBSD: ehci.c,v 1.181.6.11 2012/02/23 09:25:04 mrg Exp $ */
+/*     $NetBSD: ehci.c,v 1.181.6.12 2012/02/25 10:26:23 mrg Exp $ */
 
 /*
- * Copyright (c) 2004-2011 The NetBSD Foundation, Inc.
+ * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost), Charles M. Hannum,
- * Jeremy Morse (jeremy.morse%gmail.com@localhost), and Jared D. McNeill
- * (jmcneill%invisible.ca@localhost).
+ * Jeremy Morse (jeremy.morse%gmail.com@localhost), Jared D. McNeill
+ * (jmcneill%invisible.ca@localhost) and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.181.6.11 2012/02/23 09:25:04 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.181.6.12 2012/02/25 10:26:23 mrg Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/ohci.c
--- a/sys/dev/usb/ohci.c        Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/ohci.c        Sat Feb 25 10:26:23 2012 +0000
@@ -1,14 +1,14 @@
-/*     $NetBSD: ohci.c,v 1.218.6.12 2012/02/23 09:25:04 mrg Exp $      */
+/*     $NetBSD: ohci.c,v 1.218.6.13 2012/02/25 10:26:23 mrg Exp $      */
 /*     $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $       */
 
 /*
- * Copyright (c) 1998, 2004, 2005, 2011 The NetBSD Foundation, Inc.
+ * Copyright (c) 1998, 2004, 2005, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
  * Carlstedt Research & Technology, Jared D. McNeill (jmcneill%invisible.ca@localhost)
- * and Matthew R. Green.
+ * and Matthew R. Green (mrg%eterna.com.au@localhost).
  * This code is derived from software contributed to The NetBSD Foundation
  * by Charles M. Hannum.
  *
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.218.6.12 2012/02/23 09:25:04 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.218.6.13 2012/02/25 10:26:23 mrg Exp $");
 
 #include "opt_usb.h"
 
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/uhci.c
--- a/sys/dev/usb/uhci.c        Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/uhci.c        Sat Feb 25 10:26:23 2012 +0000
@@ -1,14 +1,14 @@
-/*     $NetBSD: uhci.c,v 1.240.6.11 2012/02/23 09:25:04 mrg Exp $      */
+/*     $NetBSD: uhci.c,v 1.240.6.12 2012/02/25 10:26:23 mrg Exp $      */
 /*     $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $       */
 
 /*
- * Copyright (c) 1998, 2004, 2011 The NetBSD Foundation, Inc.
+ * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
  * Carlstedt Research & Technology, Jared D. McNeill (jmcneill%invisible.ca@localhost)
- * and Matthew R. Green.
+ * and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.240.6.11 2012/02/23 09:25:04 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.240.6.12 2012/02/25 10:26:23 mrg Exp $");
 
 #include "opt_usb.h"
 
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/uhidev.c
--- a/sys/dev/usb/uhidev.c      Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/uhidev.c      Sat Feb 25 10:26:23 2012 +0000
@@ -1,12 +1,12 @@
-/*     $NetBSD: uhidev.c,v 1.52.6.2 2012/02/23 09:31:56 mrg Exp $      */
+/*     $NetBSD: uhidev.c,v 1.52.6.3 2012/02/25 10:26:23 mrg Exp $      */
 
 /*
- * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * Copyright (c) 2001, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
- * Carlstedt Research & Technology.
+ * Carlstedt Research & Technology and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhidev.c,v 1.52.6.2 2012/02/23 09:31:56 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhidev.c,v 1.52.6.3 2012/02/25 10:26:23 mrg Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/umass_scsipi.c
--- a/sys/dev/usb/umass_scsipi.c        Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/umass_scsipi.c        Sat Feb 25 10:26:23 2012 +0000
@@ -1,12 +1,12 @@
-/*     $NetBSD: umass_scsipi.c,v 1.38.6.2 2012/02/24 09:11:43 mrg Exp $        */
+/*     $NetBSD: umass_scsipi.c,v 1.38.6.3 2012/02/25 10:26:24 mrg Exp $        */
 
 /*
- * Copyright (c) 2001, 2003 The NetBSD Foundation, Inc.
+ * Copyright (c) 2001, 2003, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
- * Carlstedt Research & Technology and by Charles M. Hamnnum.
+ * Carlstedt Research & Technology, Charles M. Hamnnum and Matthew R. Green.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umass_scsipi.c,v 1.38.6.2 2012/02/24 09:11:43 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umass_scsipi.c,v 1.38.6.3 2012/02/25 10:26:24 mrg Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_umass.h"
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/umidi.c
--- a/sys/dev/usb/umidi.c       Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/umidi.c       Sat Feb 25 10:26:23 2012 +0000
@@ -1,11 +1,12 @@
-/*     $NetBSD: umidi.c,v 1.53.2.4 2012/02/20 05:24:42 mrg Exp $       */
+/*     $NetBSD: umidi.c,v 1.53.2.5 2012/02/25 10:26:24 mrg Exp $       */
 /*
- * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * Copyright (c) 2001, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Takuya SHIOZAKI (tshiozak%NetBSD.org@localhost) and (full-size transfers, extended
- * hw_if) Chapman Flack (chap%NetBSD.org@localhost).
+ * by Takuya SHIOZAKI (tshiozak%NetBSD.org@localhost), (full-size transfers, extended
+ * hw_if) Chapman Flack (chap%NetBSD.org@localhost), and Matthew R. Green
+ * (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -30,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: umidi.c,v 1.53.2.4 2012/02/20 05:24:42 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: umidi.c,v 1.53.2.5 2012/02/25 10:26:24 mrg Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/umidivar.h
--- a/sys/dev/usb/umidivar.h    Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/umidivar.h    Sat Feb 25 10:26:23 2012 +0000
@@ -1,10 +1,11 @@
-/*     $NetBSD: umidivar.h,v 1.17.2.1 2012/02/18 07:35:10 mrg Exp $    */
+/*     $NetBSD: umidivar.h,v 1.17.2.2 2012/02/25 10:26:24 mrg Exp $    */
 /*
- * Copyright (c) 2001 The NetBSD Foundation, Inc.
+ * Copyright (c) 2001, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Takuya SHIOZAKI (tshiozak%NetBSD.org@localhost).
+ * by Takuya SHIOZAKI (tshiozak%NetBSD.org@localhost) and Matthew R. Green
+ * (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/usb.c
--- a/sys/dev/usb/usb.c Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/usb.c Sat Feb 25 10:26:23 2012 +0000
@@ -1,12 +1,12 @@
-/*     $NetBSD: usb.c,v 1.125.6.10 2012/02/23 09:25:04 mrg Exp $       */
+/*     $NetBSD: usb.c,v 1.125.6.11 2012/02/25 10:26:24 mrg Exp $       */
 
 /*
- * Copyright (c) 1998, 2002, 2008 The NetBSD Foundation, Inc.
+ * Copyright (c) 1998, 2002, 2008, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
- * Carlstedt Research & Technology.
+ * Carlstedt Research & Technology and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.125.6.10 2012/02/23 09:25:04 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.125.6.11 2012/02/25 10:26:24 mrg Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_usb.h"
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/usbdi.c
--- a/sys/dev/usb/usbdi.c       Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/usbdi.c       Sat Feb 25 10:26:23 2012 +0000
@@ -1,13 +1,13 @@
-/*     $NetBSD: usbdi.c,v 1.134.2.11 2012/02/23 09:25:04 mrg Exp $     */
+/*     $NetBSD: usbdi.c,v 1.134.2.12 2012/02/25 10:26:24 mrg Exp $     */
 /*     $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.28 1999/11/17 22:33:49 n_hibma Exp $      */
 
 /*
- * Copyright (c) 1998 The NetBSD Foundation, Inc.
+ * Copyright (c) 1998, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
- * Carlstedt Research & Technology.
+ * Carlstedt Research & Technology and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.134.2.11 2012/02/23 09:25:04 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usbdi.c,v 1.134.2.12 2012/02/25 10:26:24 mrg Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_usb.h"
diff -r f1e83364c1f5 -r da14b30c742c sys/dev/usb/usbdivar.h
--- a/sys/dev/usb/usbdivar.h    Sat Feb 25 07:59:03 2012 +0000
+++ b/sys/dev/usb/usbdivar.h    Sat Feb 25 10:26:23 2012 +0000
@@ -1,13 +1,13 @@
-/*     $NetBSD: usbdivar.h,v 1.93.8.8 2012/02/23 09:25:03 mrg Exp $    */
+/*     $NetBSD: usbdivar.h,v 1.93.8.9 2012/02/25 10:26:24 mrg Exp $    */
 /*     $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $   */
 
 /*
- * Copyright (c) 1998 The NetBSD Foundation, Inc.
+ * Copyright (c) 1998, 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
  * by Lennart Augustsson (lennart%augustsson.net@localhost) at
- * Carlstedt Research & Technology.
+ * Carlstedt Research & Technology and Matthew R. Green (mrg%eterna.com.au@localhost).
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions



Home | Main Index | Thread Index | Old Index