diff options
author | Holger Eitzenberger <holger@eitzenberger.org> | 2008-12-26 11:18:15 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-26 11:18:15 -0800 |
commit | d238d458a70ad134cb421c3ffc66242277f30dda (patch) | |
tree | 2dd5311883e58ce341dd338aa40abc434ab57771 /drivers/net/bonding/bond_3ad.h | |
parent | d3fa4721456226d77475181a4bfbe5b3d899d65c (diff) | |
download | op-kernel-dev-d238d458a70ad134cb421c3ffc66242277f30dda.zip op-kernel-dev-d238d458a70ad134cb421c3ffc66242277f30dda.tar.gz |
802.3ad: make ntt bool
Turn Need-To-Transmit port variable into a bool. There is no
functional change.
Signed-off-by: Holger Eitzenberger <holger@eitzenberger.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_3ad.h')
-rw-r--r-- | drivers/net/bonding/bond_3ad.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_3ad.h b/drivers/net/bonding/bond_3ad.h index d5332cc..1c97def 100644 --- a/drivers/net/bonding/bond_3ad.h +++ b/drivers/net/bonding/bond_3ad.h @@ -215,7 +215,7 @@ typedef struct port { struct mac_addr actor_system; // This parameter is added here although it is not specified in the standard, just for simplification u16 actor_system_priority; // This parameter is added here although it is not specified in the standard, just for simplification u16 actor_port_aggregator_identifier; - u16 ntt; // BOOLEAN + bool ntt; u16 actor_admin_port_key; u16 actor_oper_port_key; u8 actor_admin_port_state; |