Rearrange conditional compilation directives. This makes syntax

highlighting work in vim.
This commit is contained in:
Pyun YongHyeon 2008-08-04 04:00:10 +00:00
parent 3199b0c42c
commit 3d85c23dc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181275

View File

@ -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);