mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Replace UE_GET_IN with UE_GET_DIR
This commit is contained in:
parent
f99abb25a6
commit
0bf8525354
1 changed files with 2 additions and 1 deletions
|
|
@ -228,7 +228,8 @@ typedef struct {
|
|||
#define UE_OUT 0x00
|
||||
#define UE_ADDR 0x0f
|
||||
#define UE_GET_ADDR(a) ((a) & UE_ADDR)
|
||||
#define UE_GET_IN(a) (((a) >> 7) & 1)
|
||||
#define UE_GET_IN(a) (((a) >> 7) & 1) /* XXX should be removed */
|
||||
#define UE_GET_DIR(a) ((a) & UE_DIR)
|
||||
uByte bmAttributes;
|
||||
#define UE_XFERTYPE 0x03
|
||||
#define UE_CONTROL 0x00
|
||||
|
|
|
|||
Loading…
Reference in a new issue