summaryrefslogtreecommitdiffstats
path: root/sys/dev/hea
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/hea')
-rw-r--r--sys/dev/hea/eni.c4
-rw-r--r--sys/dev/hea/eni_buffer.c4
-rw-r--r--sys/dev/hea/eni_globals.c4
-rw-r--r--sys/dev/hea/eni_init.c4
-rw-r--r--sys/dev/hea/eni_intr.c4
-rw-r--r--sys/dev/hea/eni_receive.c4
-rw-r--r--sys/dev/hea/eni_transmit.c4
-rw-r--r--sys/dev/hea/eni_vcm.c4
-rw-r--r--sys/dev/hea/hea_freebsd.c4
-rw-r--r--sys/dev/hea/hea_pci.c4
10 files changed, 30 insertions, 10 deletions
diff --git a/sys/dev/hea/eni.c b/sys/dev/hea/eni.c
index ae3ae89..d9a7ad0 100644
--- a/sys/dev/hea/eni.c
+++ b/sys/dev/hea/eni.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI adapter support
* -----------------------------
diff --git a/sys/dev/hea/eni_buffer.c b/sys/dev/hea/eni_buffer.c
index 47ac14f..b9b6164 100644
--- a/sys/dev/hea/eni_buffer.c
+++ b/sys/dev/hea/eni_buffer.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_globals.c b/sys/dev/hea/eni_globals.c
index 4586ff5..0742599 100644
--- a/sys/dev/hea/eni_globals.c
+++ b/sys/dev/hea/eni_globals.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_init.c b/sys/dev/hea/eni_init.c
index e4c671e..4672c20 100644
--- a/sys/dev/hea/eni_init.c
+++ b/sys/dev/hea/eni_init.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_intr.c b/sys/dev/hea/eni_intr.c
index 76f673f..0ced87f 100644
--- a/sys/dev/hea/eni_intr.c
+++ b/sys/dev/hea/eni_intr.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_receive.c b/sys/dev/hea/eni_receive.c
index 0fbf329..eb6c58d 100644
--- a/sys/dev/hea/eni_receive.c
+++ b/sys/dev/hea/eni_receive.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_transmit.c b/sys/dev/hea/eni_transmit.c
index 94b9275..0335d71 100644
--- a/sys/dev/hea/eni_transmit.c
+++ b/sys/dev/hea/eni_transmit.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/eni_vcm.c b/sys/dev/hea/eni_vcm.c
index 67766d3..1dfd71d 100644
--- a/sys/dev/hea/eni_vcm.c
+++ b/sys/dev/hea/eni_vcm.c
@@ -23,10 +23,12 @@
* 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$");
+
/*
* Efficient ENI Adapter Support
* -----------------------------
diff --git a/sys/dev/hea/hea_freebsd.c b/sys/dev/hea/hea_freebsd.c
index 8640522..2ed88b6 100644
--- a/sys/dev/hea/hea_freebsd.c
+++ b/sys/dev/hea/hea_freebsd.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/hea/hea_pci.c b/sys/dev/hea/hea_pci.c
index 8d40b48..093845b 100644
--- a/sys/dev/hea/hea_pci.c
+++ b/sys/dev/hea/hea_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$");
+
/*
*
* ===================================
OpenPOWER on IntegriCloud