summaryrefslogtreecommitdiffstats
path: root/sys/i4b
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-06-11 00:01:05 +0000
committerobrien <obrien@FreeBSD.org>2003-06-11 00:01:05 +0000
commitb1be1caeb25488ce3de7e0750fc868692b21480e (patch)
tree06318eab8713982e38620e7e7e702da5c13de982 /sys/i4b
parentbf4e264609d642dfadc18a15eddcd9d009cf96f3 (diff)
downloadFreeBSD-src-b1be1caeb25488ce3de7e0750fc868692b21480e.zip
FreeBSD-src-b1be1caeb25488ce3de7e0750fc868692b21480e.tar.gz
Use __FBSDID().
Diffstat (limited to 'sys/i4b')
-rw-r--r--sys/i4b/layer2/i4b_iframe.c6
-rw-r--r--sys/i4b/layer2/i4b_l2.c6
-rw-r--r--sys/i4b/layer2/i4b_l2fsm.c6
-rw-r--r--sys/i4b/layer2/i4b_l2timer.c6
-rw-r--r--sys/i4b/layer2/i4b_lme.c6
-rw-r--r--sys/i4b/layer2/i4b_mbuf.c6
-rw-r--r--sys/i4b/layer2/i4b_sframe.c6
-rw-r--r--sys/i4b/layer2/i4b_tei.c6
-rw-r--r--sys/i4b/layer2/i4b_uframe.c6
-rw-r--r--sys/i4b/layer2/i4b_util.c6
-rw-r--r--sys/i4b/layer3/i4b_l2if.c6
-rw-r--r--sys/i4b/layer3/i4b_l3fsm.c6
-rw-r--r--sys/i4b/layer3/i4b_l3timer.c6
-rw-r--r--sys/i4b/layer3/i4b_l4if.c6
-rw-r--r--sys/i4b/layer3/i4b_q931.c6
-rw-r--r--sys/i4b/layer3/i4b_q932fac.c6
-rw-r--r--sys/i4b/layer4/i4b_i4bdrv.c6
-rw-r--r--sys/i4b/layer4/i4b_l4.c6
-rw-r--r--sys/i4b/layer4/i4b_l4mgmt.c6
-rw-r--r--sys/i4b/layer4/i4b_l4timer.c6
20 files changed, 60 insertions, 60 deletions
diff --git a/sys/i4b/layer2/i4b_iframe.c b/sys/i4b/layer2/i4b_iframe.c
index e9da4b7..8f16ab8 100644
--- a/sys/i4b/layer2/i4b_iframe.c
+++ b/sys/i4b/layer2/i4b_iframe.c
@@ -26,13 +26,13 @@
*
* i4b_iframe.c - i frame handling routines
* ------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 16:07:21 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
diff --git a/sys/i4b/layer2/i4b_l2.c b/sys/i4b/layer2/i4b_l2.c
index ce8fa08..41ae508 100644
--- a/sys/i4b/layer2/i4b_l2.c
+++ b/sys/i4b/layer2/i4b_l2.c
@@ -26,13 +26,13 @@
*
* i4b_l2.c - ISDN layer 2 (Q.921)
* -------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 16:11:14 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer2/i4b_l2fsm.c b/sys/i4b/layer2/i4b_l2fsm.c
index 02c9920..19f6cdc 100644
--- a/sys/i4b/layer2/i4b_l2fsm.c
+++ b/sys/i4b/layer2/i4b_l2fsm.c
@@ -26,13 +26,13 @@
*
* i4b_l2fsm.c - layer 2 FSM
* -------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 16:14:07 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
diff --git a/sys/i4b/layer2/i4b_l2timer.c b/sys/i4b/layer2/i4b_l2timer.c
index 22c19f3..91cc0cb 100644
--- a/sys/i4b/layer2/i4b_l2timer.c
+++ b/sys/i4b/layer2/i4b_l2timer.c
@@ -26,13 +26,13 @@
*
* i4b_l2timer.c - layer 2 timer handling
* --------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:48:58 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
diff --git a/sys/i4b/layer2/i4b_lme.c b/sys/i4b/layer2/i4b_lme.c
index 7c77659..052665d 100644
--- a/sys/i4b/layer2/i4b_lme.c
+++ b/sys/i4b/layer2/i4b_lme.c
@@ -26,13 +26,13 @@
*
* i4b_lme.c - layer management entity
* -------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:49:42 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
diff --git a/sys/i4b/layer2/i4b_mbuf.c b/sys/i4b/layer2/i4b_mbuf.c
index 95f234c..8ebb912 100644
--- a/sys/i4b/layer2/i4b_mbuf.c
+++ b/sys/i4b/layer2/i4b_mbuf.c
@@ -26,13 +26,13 @@
*
* i4b - mbuf handling support routines
* ------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:51:22 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer2/i4b_sframe.c b/sys/i4b/layer2/i4b_sframe.c
index 3f2faf5..6b7d30f 100644
--- a/sys/i4b/layer2/i4b_sframe.c
+++ b/sys/i4b/layer2/i4b_sframe.c
@@ -26,13 +26,13 @@
*
* i4b_sframe.c - s frame handling routines
* ----------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:52:06 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer2/i4b_tei.c b/sys/i4b/layer2/i4b_tei.c
index 43c15ac..9984d01 100644
--- a/sys/i4b/layer2/i4b_tei.c
+++ b/sys/i4b/layer2/i4b_tei.c
@@ -26,13 +26,13 @@
*
* i4b_tei.c - tei handling procedures
* -----------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:53:27 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/syslog.h>
diff --git a/sys/i4b/layer2/i4b_uframe.c b/sys/i4b/layer2/i4b_uframe.c
index 8b1d242..c86a8a2 100644
--- a/sys/i4b/layer2/i4b_uframe.c
+++ b/sys/i4b/layer2/i4b_uframe.c
@@ -26,13 +26,13 @@
*
* i4b_uframe.c - routines for handling U-frames
* -----------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:54:08 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer2/i4b_util.c b/sys/i4b/layer2/i4b_util.c
index 114f3a6..54ce00d 100644
--- a/sys/i4b/layer2/i4b_util.c
+++ b/sys/i4b/layer2/i4b_util.c
@@ -26,13 +26,13 @@
*
* i4b_util.c - layer 2 utility routines
* -------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 17:55:03 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer3/i4b_l2if.c b/sys/i4b/layer3/i4b_l2if.c
index 842d23f..17d9dfb 100644
--- a/sys/i4b/layer3/i4b_l2if.c
+++ b/sys/i4b/layer3/i4b_l2if.c
@@ -26,13 +26,13 @@
*
* i4b_l2if.c - Layer 3 interface to Layer 2
* -------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Aug 11 12:48:41 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer3/i4b_l3fsm.c b/sys/i4b/layer3/i4b_l3fsm.c
index 3364467..04d8541 100644
--- a/sys/i4b/layer3/i4b_l3fsm.c
+++ b/sys/i4b/layer3/i4b_l3fsm.c
@@ -26,13 +26,13 @@
*
* i4b_l3fsm.c - layer 3 FSM
* -------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 19:34:39 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer3/i4b_l3timer.c b/sys/i4b/layer3/i4b_l3timer.c
index 50487e1..f2f1b1c 100644
--- a/sys/i4b/layer3/i4b_l3timer.c
+++ b/sys/i4b/layer3/i4b_l3timer.c
@@ -26,13 +26,13 @@
*
* i4b_l3timer.c - timer and timeout handling for layer 3
* ------------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 19:35:31 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
diff --git a/sys/i4b/layer3/i4b_l4if.c b/sys/i4b/layer3/i4b_l4if.c
index da925e8..4be2d91 100644
--- a/sys/i4b/layer3/i4b_l4if.c
+++ b/sys/i4b/layer3/i4b_l4if.c
@@ -26,13 +26,13 @@
*
* i4b_l4if.c - Layer 3 interface to Layer 4
* -------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 19:36:08 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer3/i4b_q931.c b/sys/i4b/layer3/i4b_q931.c
index 626328d..338555a 100644
--- a/sys/i4b/layer3/i4b_q931.c
+++ b/sys/i4b/layer3/i4b_q931.c
@@ -26,13 +26,13 @@
*
* i4b_q931.c - Q931 received messages handling
* --------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Aug 11 19:18:08 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer3/i4b_q932fac.c b/sys/i4b/layer3/i4b_q932fac.c
index 98114a3..98a361d 100644
--- a/sys/i4b/layer3/i4b_q932fac.c
+++ b/sys/i4b/layer3/i4b_q932fac.c
@@ -26,13 +26,13 @@
*
* i4b_q932fac.c - Q932 facility handling
* --------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 19:37:29 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer4/i4b_i4bdrv.c b/sys/i4b/layer4/i4b_i4bdrv.c
index 24d896a..d98fca6 100644
--- a/sys/i4b/layer4/i4b_i4bdrv.c
+++ b/sys/i4b/layer4/i4b_i4bdrv.c
@@ -26,13 +26,13 @@
*
* i4b_i4bdrv.c - i4b userland interface driver
* --------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Aug 11 12:42:46 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4bipr.h"
#include "i4btel.h"
diff --git a/sys/i4b/layer4/i4b_l4.c b/sys/i4b/layer4/i4b_l4.c
index 7b0616b..0b744f0 100644
--- a/sys/i4b/layer4/i4b_l4.c
+++ b/sys/i4b/layer4/i4b_l4.c
@@ -26,13 +26,13 @@
*
* i4b_l4.c - kernel interface to userland
* -----------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Aug 11 12:43:14 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include "i4bipr.h"
#include <sys/param.h>
diff --git a/sys/i4b/layer4/i4b_l4mgmt.c b/sys/i4b/layer4/i4b_l4mgmt.c
index 3f0e6ea..4715c21 100644
--- a/sys/i4b/layer4/i4b_l4mgmt.c
+++ b/sys/i4b/layer4/i4b_l4mgmt.c
@@ -26,13 +26,13 @@
*
* i4b_l4mgmt.c - layer 4 calldescriptor management utilites
* -----------------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sun Aug 11 12:42:01 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
diff --git a/sys/i4b/layer4/i4b_l4timer.c b/sys/i4b/layer4/i4b_l4timer.c
index 5be778d..72d3572 100644
--- a/sys/i4b/layer4/i4b_l4timer.c
+++ b/sys/i4b/layer4/i4b_l4timer.c
@@ -26,13 +26,13 @@
*
* i4b_l4timer.c - timer and timeout handling for layer 4
* --------------------------------------------------------
- *
- * $FreeBSD$
- *
* last edit-date: [Sat Mar 9 19:49:13 2002]
*
*---------------------------------------------------------------------------*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
OpenPOWER on IntegriCloud