From bfce43df588d6c27e2859a749c641a25969021b6 Mon Sep 17 00:00:00 2001 From: yongari Date: Mon, 4 Aug 2008 04:00:10 +0000 Subject: Rearrange conditional compilation directives. This makes syntax highlighting work in vim. --- sys/dev/re/if_re.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/re/if_re.c') diff --git a/sys/dev/re/if_re.c b/sys/dev/re/if_re.c index 0628ac9..c845c74 100644 --- a/sys/dev/re/if_re.c +++ b/sys/dev/re/if_re.c @@ -2132,10 +2132,11 @@ re_int_task(void *arg, int npending) if (status & (RL_ISR_RX_OK|RL_ISR_RX_ERR|RL_ISR_FIFO_OFLOW)) rval = re_rxeof(sc); + if (status & ( #ifdef RE_TX_MODERATION - if (status & (RL_ISR_TIMEOUT_EXPIRED| + RL_ISR_TIMEOUT_EXPIRED| #else - if (status & (RL_ISR_TX_OK| + RL_ISR_TX_OK| #endif RL_ISR_TX_ERR|RL_ISR_TX_DESC_UNAVAIL)) re_txeof(sc); -- cgit v1.1