diff options
author | mux <mux@FreeBSD.org> | 2003-04-19 00:28:49 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2003-04-19 00:28:49 +0000 |
commit | f1b1ca3a925381f4d2923638e42a0e79fe036e26 (patch) | |
tree | 2386f22c66fe0c2463b689ffea73ad5b19c3bde0 /sys/dev/tx | |
parent | 202f4add577d834c41dc92decd71fa382e2eb829 (diff) | |
download | FreeBSD-src-f1b1ca3a925381f4d2923638e42a0e79fe036e26.zip FreeBSD-src-f1b1ca3a925381f4d2923638e42a0e79fe036e26.tar.gz |
- Correct a comment made bogus by my last commit.
- Use __FBSDID.
Diffstat (limited to 'sys/dev/tx')
-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 b7453d7..ec94ff7 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; |