summaryrefslogtreecommitdiffstats
path: root/sys/dev/hfa
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
committerobrien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
commitc63dab466c1f033b389bd6ea609f595059544212 (patch)
tree42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/hfa
parentfb9845a19e4bbed8172870281b730ff77f07b9be (diff)
downloadFreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.zip
FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.tar.gz
Use __FBSDID().
Also some minor style cleanups.
Diffstat (limited to 'sys/dev/hfa')
-rw-r--r--sys/dev/hfa/fore_buffer.c10
-rw-r--r--sys/dev/hfa/fore_globals.c10
-rw-r--r--sys/dev/hfa/fore_load.c10
-rw-r--r--sys/dev/hfa/fore_receive.c10
-rw-r--r--sys/dev/hfa/fore_stats.c8
-rw-r--r--sys/dev/hfa/fore_timer.c10
-rw-r--r--sys/dev/hfa/fore_transmit.c10
-rw-r--r--sys/dev/hfa/hfa_eisa.c4
-rw-r--r--sys/dev/hfa/hfa_pci.c4
-rw-r--r--sys/dev/hfa/hfa_sbus.c11
10 files changed, 37 insertions, 50 deletions
diff --git a/sys/dev/hfa/fore_buffer.c b/sys/dev/hfa/fore_buffer.c
index 75bb00f..d03f315 100644
--- a/sys/dev/hfa/fore_buffer.c
+++ b/sys/dev/hfa/fore_buffer.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/fore_globals.c b/sys/dev/hfa/fore_globals.c
index b8e9815..1f68f7d 100644
--- a/sys/dev/hfa/fore_globals.c
+++ b/sys/dev/hfa/fore_globals.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/fore_load.c b/sys/dev/hfa/fore_load.c
index f56102a..fffdf65 100644
--- a/sys/dev/hfa/fore_load.c
+++ b/sys/dev/hfa/fore_load.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#ifdef COMPILING_LINT
#warning "The fore pci driver is broken and is not compiled with LINT"
#else
diff --git a/sys/dev/hfa/fore_receive.c b/sys/dev/hfa/fore_receive.c
index fb2095e..f642111 100644
--- a/sys/dev/hfa/fore_receive.c
+++ b/sys/dev/hfa/fore_receive.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/fore_stats.c b/sys/dev/hfa/fore_stats.c
index a160dbe..9158793 100644
--- a/sys/dev/hfa/fore_stats.c
+++ b/sys/dev/hfa/fore_stats.c
@@ -1,10 +1,8 @@
/*
- *
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/fore_timer.c b/sys/dev/hfa/fore_timer.c
index 0828d5c..51745ac 100644
--- a/sys/dev/hfa/fore_timer.c
+++ b/sys/dev/hfa/fore_timer.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/fore_transmit.c b/sys/dev/hfa/fore_transmit.c
index f5b78c8..4aff05f 100644
--- a/sys/dev/hfa/fore_transmit.c
+++ b/sys/dev/hfa/fore_transmit.c
@@ -1,10 +1,8 @@
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -22,11 +20,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
- * @(#) $FreeBSD$
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* FORE Systems 200-Series Adapter Support
* ---------------------------------------
diff --git a/sys/dev/hfa/hfa_eisa.c b/sys/dev/hfa/hfa_eisa.c
index 6165334..6c42fb8 100644
--- a/sys/dev/hfa/hfa_eisa.c
+++ b/sys/dev/hfa/hfa_eisa.c
@@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
*
* ===================================
diff --git a/sys/dev/hfa/hfa_pci.c b/sys/dev/hfa/hfa_pci.c
index f5f448f..b6cc311 100644
--- a/sys/dev/hfa/hfa_pci.c
+++ b/sys/dev/hfa/hfa_pci.c
@@ -23,9 +23,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
*
* ===================================
diff --git a/sys/dev/hfa/hfa_sbus.c b/sys/dev/hfa/hfa_sbus.c
index 3e769d2..990803c 100644
--- a/sys/dev/hfa/hfa_sbus.c
+++ b/sys/dev/hfa/hfa_sbus.c
@@ -22,17 +22,12 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
-
-/*
- *
+/*-
* ===================================
* HARP | Host ATM Research Platform
* ===================================
*
- *
* This Host ATM Research Platform ("HARP") file (the "Software") is
* made available by Network Computing Services, Inc. ("NetworkCS")
* "AS IS". NetworkCS does not provide maintenance, improvements or
@@ -50,9 +45,11 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
- *
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
OpenPOWER on IntegriCloud