summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/wscons/wsdisplay.c8
-rw-r--r--sys/dev/wscons/wsemul_dumb.c8
-rw-r--r--sys/dev/wscons/wsemul_sun.c10
-rw-r--r--sys/dev/wscons/wsemulconf.c8
-rw-r--r--sys/dev/wscons/wsevent.c8
-rw-r--r--sys/dev/wscons/wskbd.c8
-rw-r--r--sys/dev/wscons/wsmouse.c8
7 files changed, 22 insertions, 36 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c
index 66dc8dc5ef6..d68a24a8b56 100644
--- a/sys/dev/wscons/wsdisplay.c
+++ b/sys/dev/wscons/wsdisplay.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsdisplay.c,v 1.33 1999/12/06 18:52:23 drochner Exp $ */
+/* $NetBSD: wsdisplay.c,v 1.34 2000/01/05 11:19:36 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,10 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsdisplay.c,v 1.33 1999/12/06 18:52:23 drochner Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsdisplay.c,v 1.34 2000/01/05 11:19:36 drochner Exp $");
#include <sys/param.h>
#include <sys/conf.h>
diff --git a/sys/dev/wscons/wsemul_dumb.c b/sys/dev/wscons/wsemul_dumb.c
index cc5076a05e9..f3439c690a3 100644
--- a/sys/dev/wscons/wsemul_dumb.c
+++ b/sys/dev/wscons/wsemul_dumb.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsemul_dumb.c,v 1.6 1999/01/17 15:44:57 drochner Exp $ */
+/* $NetBSD: wsemul_dumb.c,v 1.7 2000/01/05 11:19:36 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,10 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsemul_dumb.c,v 1.6 1999/01/17 15:44:57 drochner Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsemul_dumb.c,v 1.7 2000/01/05 11:19:36 drochner Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/wscons/wsemul_sun.c b/sys/dev/wscons/wsemul_sun.c
index 8281c51559c..8e34e7d43f7 100644
--- a/sys/dev/wscons/wsemul_sun.c
+++ b/sys/dev/wscons/wsemul_sun.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsemul_sun.c,v 1.10 1999/01/17 15:44:57 drochner Exp $ */
+/* $NetBSD: wsemul_sun.c,v 1.11 2000/01/05 11:19:36 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,13 +30,11 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsemul_sun.c,v 1.10 1999/01/17 15:44:57 drochner Exp $";
-
/* XXX DESCRIPTION/SOURCE OF INFORMATION */
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsemul_sun.c,v 1.11 2000/01/05 11:19:36 drochner Exp $");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/time.h>
diff --git a/sys/dev/wscons/wsemulconf.c b/sys/dev/wscons/wsemulconf.c
index d29ea52a14b..467c1e8392c 100644
--- a/sys/dev/wscons/wsemulconf.c
+++ b/sys/dev/wscons/wsemulconf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsemulconf.c,v 1.3 1998/06/15 17:10:37 drochner Exp $ */
+/* $NetBSD: wsemulconf.c,v 1.4 2000/01/05 11:19:37 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,10 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsemulconf.c,v 1.3 1998/06/15 17:10:37 drochner Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsemulconf.c,v 1.4 2000/01/05 11:19:37 drochner Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/wscons/wsevent.c b/sys/dev/wscons/wsevent.c
index 237a44fe80a..94c59f67230 100644
--- a/sys/dev/wscons/wsevent.c
+++ b/sys/dev/wscons/wsevent.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsevent.c,v 1.3 1999/01/10 00:28:21 augustss Exp $ */
+/* $NetBSD: wsevent.c,v 1.4 2000/01/05 11:19:37 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,10 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsevent.c,v 1.3 1999/01/10 00:28:21 augustss Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsevent.c,v 1.4 2000/01/05 11:19:37 drochner Exp $");
/*
* Copyright (c) 1992, 1993
diff --git a/sys/dev/wscons/wskbd.c b/sys/dev/wscons/wskbd.c
index 4a3c0959445..c97e951bd69 100644
--- a/sys/dev/wscons/wskbd.c
+++ b/sys/dev/wscons/wskbd.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wskbd.c,v 1.34 1999/12/21 12:02:04 drochner Exp $ */
+/* $NetBSD: wskbd.c,v 1.35 2000/01/05 11:19:37 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -33,10 +33,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wskbd.c,v 1.34 1999/12/21 12:02:04 drochner Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wskbd.c,v 1.35 2000/01/05 11:19:37 drochner Exp $");
/*
* Copyright (c) 1992, 1993
diff --git a/sys/dev/wscons/wsmouse.c b/sys/dev/wscons/wsmouse.c
index 13289774adc..d9c84580966 100644
--- a/sys/dev/wscons/wsmouse.c
+++ b/sys/dev/wscons/wsmouse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: wsmouse.c,v 1.9 1999/08/04 11:26:04 augustss Exp $ */
+/* $NetBSD: wsmouse.c,v 1.10 2000/01/05 11:19:37 drochner Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -30,10 +30,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-static const char _copyright[] __attribute__ ((unused)) =
- "Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.";
-static const char _rcsid[] __attribute__ ((unused)) =
- "$NetBSD: wsmouse.c,v 1.9 1999/08/04 11:26:04 augustss Exp $";
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: wsmouse.c,v 1.10 2000/01/05 11:19:37 drochner Exp $");
/*
* Copyright (c) 1992, 1993