summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2003-11-14 17:16:58 +0000
committerobrien <obrien@FreeBSD.org>2003-11-14 17:16:58 +0000
commitb0479caf614810b424cbb8e80b47db2da6b2ca71 (patch)
tree2eaf7fc7d82bb8d1e15839fdb981b640a4f32c00 /sys/dev
parent6260ac284472c8aa21372d1fa6906101f062ac5e (diff)
downloadFreeBSD-src-b0479caf614810b424cbb8e80b47db2da6b2ca71.zip
FreeBSD-src-b0479caf614810b424cbb8e80b47db2da6b2ca71.tar.gz
Remove duplicate FBSDID's, move others to their right place.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/bge/if_bge.c3
-rw-r--r--sys/dev/dc/if_dc.c7
-rw-r--r--sys/dev/ed/if_ed.c5
-rw-r--r--sys/dev/lge/if_lge.c3
-rw-r--r--sys/dev/lnc/if_lnc.c1
-rw-r--r--sys/dev/nge/if_nge.c3
-rw-r--r--sys/dev/re/if_re.c6
-rw-r--r--sys/dev/sf/if_sf.c7
-rw-r--r--sys/dev/sk/if_sk.c8
-rw-r--r--sys/dev/sn/if_sn.c1
-rw-r--r--sys/dev/tx/if_tx.c4
-rw-r--r--sys/dev/vr/if_vr.c7
12 files changed, 18 insertions, 37 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c
index 0b8328c..123135c 100644
--- a/sys/dev/bge/if_bge.c
+++ b/sys/dev/bge/if_bge.c
@@ -66,9 +66,6 @@ __FBSDID("$FreeBSD$");
* ring.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/endian.h>
#include <sys/systm.h>
diff --git a/sys/dev/dc/if_dc.c b/sys/dev/dc/if_dc.c
index c3575a9..dc1c1b3 100644
--- a/sys/dev/dc/if_dc.c
+++ b/sys/dev/dc/if_dc.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143
* series chips and several workalikes including the following:
@@ -60,7 +63,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The Intel 21143 is the successor to the DEC 21140. It is basically
* the same as the 21140 but with a few new features. The 21143 supports
@@ -89,9 +91,6 @@
* AX88140A doesn't support internal NWAY.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/endian.h>
#include <sys/systm.h>
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 8863e9d..063e7bb 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -23,10 +23,11 @@
* 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$
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Device driver for National Semiconductor DS8390/WD83C690 based ethernet
* adapters. By David Greenman, 29-April-1993
diff --git a/sys/dev/lge/if_lge.c b/sys/dev/lge/if_lge.c
index 91b0eff..df84d49 100644
--- a/sys/dev/lge/if_lge.c
+++ b/sys/dev/lge/if_lge.c
@@ -69,9 +69,6 @@ __FBSDID("$FreeBSD$");
* if in fact he did me much of a favor)
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/dev/lnc/if_lnc.c b/sys/dev/lnc/if_lnc.c
index e555ba0..1e7e9c3 100644
--- a/sys/dev/lnc/if_lnc.c
+++ b/sys/dev/lnc/if_lnc.c
@@ -26,7 +26,6 @@
* 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.
- *
*/
#include <sys/cdefs.h>
diff --git a/sys/dev/nge/if_nge.c b/sys/dev/nge/if_nge.c
index 92aed75..f01e8a9 100644
--- a/sys/dev/nge/if_nge.c
+++ b/sys/dev/nge/if_nge.c
@@ -88,9 +88,6 @@ __FBSDID("$FreeBSD$");
* if the user selects an MTU larger than 8152 (8170 - 18).
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c
index cb6331b..c72d43b 100644
--- a/sys/dev/re/if_re.c
+++ b/sys/dev/re/if_re.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* RealTek 8139C+/8169/8169S/8110S PCI NIC driver
*
@@ -105,9 +108,6 @@
* driver is 7500 bytes.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/endian.h>
#include <sys/systm.h>
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index ede1a49..e1def22 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/if_sf.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Adaptec AIC-6915 "Starfire" PCI fast ethernet driver for FreeBSD.
* Programming manual is available from:
@@ -39,7 +42,6 @@
* Department of Electical Engineering
* Columbia University, New York City
*/
-
/*
* The Adaptec AIC-6915 "Starfire" is a 64-bit 10/100 PCI ethernet
* controller designed with flexibility and reducing CPU load in mind.
@@ -77,9 +79,6 @@
* registers inside the 256-byte I/O window.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c
index 1b0c41a..1ef4493 100644
--- a/sys/dev/sk/if_sk.c
+++ b/sys/dev/sk/if_sk.c
@@ -31,7 +31,6 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
-
/*
* Copyright (c) 2003 Nathan L. Binkert <binkertn@umich.edu>
*
@@ -48,6 +47,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* SysKonnect SK-NET gigabit ethernet driver for FreeBSD. Supports
* the SK-984x series adapters, both single port and dual port.
@@ -66,7 +68,6 @@
* Department of Electrical Engineering
* Columbia University, New York City
*/
-
/*
* The SysKonnect gigabit ethernet adapters consist of two main
* components: the SysKonnect GEnesis controller chip and the XaQti Corp.
@@ -84,9 +85,6 @@
* both XMACs to operate as independent interfaces.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/dev/sn/if_sn.c b/sys/dev/sn/if_sn.c
index 1768b6d..689ee83 100644
--- a/sys/dev/sn/if_sn.c
+++ b/sys/dev/sn/if_sn.c
@@ -27,7 +27,6 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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.
- *
*/
#include <sys/cdefs.h>
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c
index dc9c908..fa4fc9d 100644
--- a/sys/dev/tx/if_tx.c
+++ b/sys/dev/tx/if_tx.c
@@ -22,7 +22,6 @@
* 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.
- *
*/
#include <sys/cdefs.h>
@@ -40,9 +39,6 @@ __FBSDID("$FreeBSD$");
* Thanks are going to Steve Bauer and Jason Wright.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/dev/vr/if_vr.c b/sys/dev/vr/if_vr.c
index a65f521..712bbea 100644
--- a/sys/dev/vr/if_vr.c
+++ b/sys/dev/vr/if_vr.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* VIA Rhine fast ethernet PCI NIC driver
*
@@ -41,7 +44,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The VIA Rhine controllers are similar in some respects to the
* the DEC tulip chips, except less complicated. The controller
@@ -57,9 +59,6 @@
* transmission.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
OpenPOWER on IntegriCloud