summaryrefslogtreecommitdiffstats
path: root/sys/i4b/driver
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-06-10 23:23:33 +0000
committerobrien <obrien@FreeBSD.org>2003-06-10 23:23:33 +0000
commit4b63767236fbcbb07d754df5d295e05b26a3556f (patch)
tree492d54e146feaee8eeb2eac0140316a45daee78f /sys/i4b/driver
parent62dc1f7c259db5ae67933b1947bfa1c240122792 (diff)
downloadFreeBSD-src-4b63767236fbcbb07d754df5d295e05b26a3556f.zip
FreeBSD-src-4b63767236fbcbb07d754df5d295e05b26a3556f.tar.gz
Use __FBSDID().
Diffstat (limited to 'sys/i4b/driver')
-rw-r--r--sys/i4b/driver/i4b_ctl.c6
-rw-r--r--sys/i4b/driver/i4b_ing.c6
-rw-r--r--sys/i4b/driver/i4b_ipr.c6
-rw-r--r--sys/i4b/driver/i4b_isppp.c5
-rw-r--r--sys/i4b/driver/i4b_rbch.c6
-rw-r--r--sys/i4b/driver/i4b_tel.c7
-rw-r--r--sys/i4b/driver/i4b_trace.c6
7 files changed, 21 insertions, 21 deletions
diff --git a/sys/i4b/driver/i4b_ctl.c b/sys/i4b/driver/i4b_ctl.c
index 4eb03c3..f71ae63 100644
--- a/sys/i4b/driver/i4b_ctl.c
+++ b/sys/i4b/driver/i4b_ctl.c
@@ -26,13 +26,13 @@
*
* i4b_ctl.c - i4b system control port driver
* ------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Mar 17 09:49:24 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/ioccom.h>
#include <sys/kernel.h>
diff --git a/sys/i4b/driver/i4b_ing.c b/sys/i4b/driver/i4b_ing.c
index ec4eeb7..02e127f 100644
--- a/sys/i4b/driver/i4b_ing.c
+++ b/sys/i4b/driver/i4b_ing.c
@@ -26,13 +26,13 @@
*
* i4b_ing.c - isdn4bsd B-channel to netgraph driver
* -------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 14:09:53 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4bing.h"
#include "opt_i4b.h"
diff --git a/sys/i4b/driver/i4b_ipr.c b/sys/i4b/driver/i4b_ipr.c
index dd82aba..370e0e4 100644
--- a/sys/i4b/driver/i4b_ipr.c
+++ b/sys/i4b/driver/i4b_ipr.c
@@ -26,9 +26,6 @@
*
* i4b_ipr.c - isdn4bsd IP over raw HDLC ISDN network driver
* ---------------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Mar 17 09:32:58 2002]
*
*---------------------------------------------------------------------------*
@@ -56,6 +53,9 @@
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4bipr.h"
#include "opt_i4b.h"
diff --git a/sys/i4b/driver/i4b_isppp.c b/sys/i4b/driver/i4b_isppp.c
index 1ba77b6..dc60fad 100644
--- a/sys/i4b/driver/i4b_isppp.c
+++ b/sys/i4b/driver/i4b_isppp.c
@@ -34,12 +34,13 @@
* the "cx" driver for Cronyx's HDLC-in-hardware device). This driver
* is only the glue between sppp and i4b.
*
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 14:09:27 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4bisppp.h"
#include <sys/param.h>
diff --git a/sys/i4b/driver/i4b_rbch.c b/sys/i4b/driver/i4b_rbch.c
index ebd4866..d89e2c2 100644
--- a/sys/i4b/driver/i4b_rbch.c
+++ b/sys/i4b/driver/i4b_rbch.c
@@ -26,13 +26,13 @@
*
* i4b_rbch.c - device driver for raw B channel data
* ---------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Mar 17 09:51:03 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4brbch.h"
#include <sys/param.h>
diff --git a/sys/i4b/driver/i4b_tel.c b/sys/i4b/driver/i4b_tel.c
index 231886d..e13b5f4 100644
--- a/sys/i4b/driver/i4b_tel.c
+++ b/sys/i4b/driver/i4b_tel.c
@@ -26,13 +26,13 @@
*
* i4b_tel.c - device driver for ISDN telephony
* --------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Tue Aug 27 13:54:08 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4btel.h"
#undef I4BTELDEBUG
@@ -60,7 +60,6 @@
#include <i4b/layer4/i4b_l4.h>
/* minor number: lower 6 bits = unit number */
-
#define UNITBITS 6
#define UNITMASK 0x3f
#define UNIT(n) (minor(n) & UNITMASK)
diff --git a/sys/i4b/driver/i4b_trace.c b/sys/i4b/driver/i4b_trace.c
index 7237fc1..e601ed8 100644
--- a/sys/i4b/driver/i4b_trace.c
+++ b/sys/i4b/driver/i4b_trace.c
@@ -26,15 +26,15 @@
*
* i4btrc - device driver for trace data read device
* ---------------------------------------------------
- *
* last edit-date: [Sun Mar 17 09:52:51 2002]
*
- * $FreeBSD$
- *
* NOTE: the code assumes that SPLI4B >= splimp !
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4btrc.h"
#include <sys/param.h>
OpenPOWER on IntegriCloud