diff options
author | Holger Eitzenberger <holger@eitzenberger.org> | 2008-12-26 13:27:57 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-26 13:27:57 -0800 |
commit | 87f422f8618c541db0f96194cca9465817f76b89 (patch) | |
tree | b5ecaf51224873d319cdb2d3d30a9ab5804be6fc | |
parent | 1624db7be0d9f77f5494efe1b066d1d44b46c96c (diff) | |
download | kernel_samsung_smdk4412-87f422f8618c541db0f96194cca9465817f76b89.zip kernel_samsung_smdk4412-87f422f8618c541db0f96194cca9465817f76b89.tar.gz kernel_samsung_smdk4412-87f422f8618c541db0f96194cca9465817f76b89.tar.bz2 |
802.3ad: remove typedef around ad_system
As typedefs are considered a bad thing most of the time remove the
typedef around ad_system.
Signed-off-by: Holger Eitzenberger <heitzenberger@astaro.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/bonding/bond_3ad.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/bonding/bond_3ad.h b/drivers/net/bonding/bond_3ad.h index daefd16..68b1c51 100644 --- a/drivers/net/bonding/bond_3ad.h +++ b/drivers/net/bonding/bond_3ad.h @@ -244,10 +244,10 @@ typedef struct port { } port_t; // system structure -typedef struct ad_system { +struct ad_system { u16 sys_priority; struct mac_addr sys_mac_addr; -} ad_system_t; +}; #ifdef __ia64__ #pragma pack() @@ -258,7 +258,7 @@ typedef struct ad_system { #define SLAVE_AD_INFO(slave) ((slave)->ad_info) struct ad_bond_info { - ad_system_t system; // 802.3ad system structure + struct ad_system system; /* 802.3ad system structure */ u32 agg_select_timer; // Timer to select aggregator after all adapter's hand shakes u32 agg_select_mode; // Mode of selection of active aggregator(bandwidth/count) int lacp_fast; /* whether fast periodic tx should be |