diff options
| author | Maxime Henrion <mux@FreeBSD.org> | 2003-04-19 00:28:49 +0000 |
|---|---|---|
| committer | Maxime Henrion <mux@FreeBSD.org> | 2003-04-19 00:28:49 +0000 |
| commit | f78a230c3cf8c37d5d50095547cd5854de71902e (patch) | |
| tree | 2386f22c66fe0c2463b689ffea73ad5b19c3bde0 /sys/dev | |
| parent | 8a2ec7627f06c1c699a7d9ca0d0194503ae4cbe2 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/tx/if_tx.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/tx/if_tx.c b/sys/dev/tx/if_tx.c index b7453d7a23fb..ec94ff7f530d 100644 --- a/sys/dev/tx/if_tx.c +++ b/sys/dev/tx/if_tx.c @@ -23,7 +23,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ /* @@ -38,6 +37,9 @@ * 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> @@ -241,7 +243,7 @@ epic_attach(dev) ifp->if_baudrate = 10000000; ifp->if_snd.ifq_maxlen = TX_RING_SIZE - 1; - /* Enable ports, memory and busmastering */ + /* Enable busmastering */ pci_enable_busmaster(dev); rid = EPIC_RID; |
