summaryrefslogtreecommitdiffstats
path: root/sys/pci
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/pci
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/pci')
-rw-r--r--sys/pci/if_dc.c7
-rw-r--r--sys/pci/if_pcn.c6
-rw-r--r--sys/pci/if_rl.c7
-rw-r--r--sys/pci/if_sf.c7
-rw-r--r--sys/pci/if_sis.c7
-rw-r--r--sys/pci/if_sk.c8
-rw-r--r--sys/pci/if_tl.c8
-rw-r--r--sys/pci/if_vr.c7
-rw-r--r--sys/pci/if_wb.c7
-rw-r--r--sys/pci/if_xl.c7
10 files changed, 30 insertions, 41 deletions
diff --git a/sys/pci/if_dc.c b/sys/pci/if_dc.c
index c3575a9..dc1c1b3 100644
--- a/sys/pci/if_dc.c
+++ b/sys/pci/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/pci/if_pcn.c b/sys/pci/if_pcn.c
index c5bd726..914b54b 100644
--- a/sys/pci/if_pcn.c
+++ b/sys/pci/if_pcn.c
@@ -31,6 +31,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* AMD Am79c972 fast ethernet PCI NIC driver. Datatheets are available
* from http://www.amd.com.
@@ -49,9 +52,6 @@
* layers without copying on both the x86 and alpha platforms).
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/pci/if_rl.c b/sys/pci/if_rl.c
index f7b6db4..9e25e2f 100644
--- a/sys/pci/if_rl.c
+++ b/sys/pci/if_rl.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* RealTek 8129/8139 PCI NIC driver
*
@@ -41,7 +44,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The RealTek 8139 PCI NIC redefines the meaning of 'low end.' This is
* probably the worst PCI ethernet controller ever made, with the possible
@@ -81,9 +83,6 @@
* to select which interface to use depending on the chip type.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/endian.h>
#include <sys/systm.h>
diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c
index ede1a49..e1def22 100644
--- a/sys/pci/if_sf.c
+++ b/sys/pci/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/pci/if_sis.c b/sys/pci/if_sis.c
index 99a8e42..fec9a41 100644
--- a/sys/pci/if_sis.c
+++ b/sys/pci/if_sis.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* SiS 900/SiS 7016 fast ethernet PCI NIC driver. Datasheets are
* available from http://www.sis.com.tw.
@@ -41,7 +44,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The SiS 900 is a fairly simple chip. It uses bus master DMA with
* simple TX and RX descriptors of 3 longwords in size. The receiver
@@ -55,9 +57,6 @@
* longword aligned.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c
index 1b0c41a..1ef4493 100644
--- a/sys/pci/if_sk.c
+++ b/sys/pci/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/pci/if_tl.c b/sys/pci/if_tl.c
index 438215c..df7784f 100644
--- a/sys/pci/if_tl.c
+++ b/sys/pci/if_tl.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Texas Instruments ThunderLAN driver for FreeBSD 2.2.6 and 3.x.
* Supports many Compaq PCI NICs based on the ThunderLAN ethernet controller,
@@ -47,7 +50,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* Some notes about the ThunderLAN:
*
@@ -118,7 +120,6 @@
* TX 'end of frame' interrupt. It will also generate an 'end of channel'
* interrupt when it reaches the end of the list.
*/
-
/*
* Some notes about this driver:
*
@@ -176,9 +177,6 @@
* itself thereby reducing the load on the host CPU.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
diff --git a/sys/pci/if_vr.c b/sys/pci/if_vr.c
index a65f521..712bbea 100644
--- a/sys/pci/if_vr.c
+++ b/sys/pci/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>
diff --git a/sys/pci/if_wb.c b/sys/pci/if_wb.c
index d1e36e1..13b29b0 100644
--- a/sys/pci/if_wb.c
+++ b/sys/pci/if_wb.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* Winbond fast ethernet PCI NIC driver
*
@@ -41,7 +44,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The Winbond W89C840F chip is a bus master; in some ways it resembles
* a DEC 'tulip' chip, only not as complicated. Unfortunately, it has
@@ -81,9 +83,6 @@
* three of my test boards seems fine.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include "opt_bdg.h"
#include <sys/param.h>
diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c
index ed5e3c4..ae078ff 100644
--- a/sys/pci/if_xl.c
+++ b/sys/pci/if_xl.c
@@ -30,6 +30,9 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* 3Com 3c90x Etherlink XL PCI NIC driver
*
@@ -71,7 +74,6 @@
* Electrical Engineering Department
* Columbia University, New York City
*/
-
/*
* The 3c90x series chips use a bus-master DMA interface for transfering
* packets to and from the controller chip. Some of the "vortex" cards
@@ -99,9 +101,6 @@
* PCI-based NICs.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
OpenPOWER on IntegriCloud