mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 08:55:18 -04:00
Fix typo in an unused macro.
This commit is contained in:
parent
34189c035b
commit
eddf67296e
1 changed files with 1 additions and 1 deletions
|
|
@ -324,7 +324,7 @@ struct sis_desc {
|
|||
#define SIS_CMDSTS_MORE 0x40000000
|
||||
#define SIS_CMDSTS_OWN 0x80000000
|
||||
|
||||
#define SIS_LASTDESC(x) (!((x)->sis_ctl & SIS_CMDSTS_MORE)))
|
||||
#define SIS_LASTDESC(x) (!((x)->sis_ctl & SIS_CMDSTS_MORE))
|
||||
#define SIS_OWNDESC(x) ((x)->sis_ctl & SIS_CMDSTS_OWN)
|
||||
#define SIS_INC(x, y) (x) = ((x) == ((y)-1)) ? 0 : (x)+1
|
||||
#define SIS_RXBYTES(x) (((x)->sis_ctl & SIS_CMDSTS_BUFLEN) - ETHER_CRC_LEN)
|
||||
|
|
|
|||
Loading…
Reference in a new issue