diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-05-10 15:54:04 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-05-10 15:54:04 +0000 |
commit | ab3b3925ef1e3ad3736e6acdfc1c0a92ce005d53 (patch) | |
tree | f26a9c29c8ee4ce754e92897039e36d324b7fbb7 /sys/dev/ic/fxp.c | |
parent | 268ab4097eb4fde15e3aff5e0c209092cffb3f6f (diff) |
Zap an unsued define.
Diffstat (limited to 'sys/dev/ic/fxp.c')
-rw-r--r-- | sys/dev/ic/fxp.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c index 786676070c2..25acb0e4603 100644 --- a/sys/dev/ic/fxp.c +++ b/sys/dev/ic/fxp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fxp.c,v 1.34 2002/05/10 15:50:55 art Exp $ */ +/* $OpenBSD: fxp.c,v 1.35 2002/05/10 15:54:03 art Exp $ */ /* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */ /* @@ -179,15 +179,6 @@ void fxp_scb_cmd(struct fxp_softc *, u_int8_t); static int tx_threshold = 64; /* - * Number of completed TX commands at which point an interrupt - * will be generated to garbage collect the attached buffers. - * Must be at least one less than FXP_NTXCB, and should be - * enough less so that the transmitter doesn't becomes idle - * during the buffer rundown (which would reduce performance). - */ -#define FXP_CXINT_THRESH 120 - -/* * TxCB list index mask. This is used to do list wrap-around. */ #define FXP_TXCB_MASK (FXP_NTXCB - 1) |