diff options
Diffstat (limited to 'drivers/net/niu.h')
-rw-r--r-- | drivers/net/niu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/niu.h b/drivers/net/niu.h index e1a7392e8d70..5a002375b35b 100644 --- a/drivers/net/niu.h +++ b/drivers/net/niu.h | |||
@@ -3131,16 +3131,19 @@ struct niu_ops { | |||
3131 | }; | 3131 | }; |
3132 | 3132 | ||
3133 | struct niu_link_config { | 3133 | struct niu_link_config { |
3134 | u32 supported; | ||
3135 | |||
3134 | /* Describes what we're trying to get. */ | 3136 | /* Describes what we're trying to get. */ |
3135 | u32 advertising; | 3137 | u32 advertising; |
3136 | u32 supported; | ||
3137 | u16 speed; | 3138 | u16 speed; |
3138 | u8 duplex; | 3139 | u8 duplex; |
3139 | u8 autoneg; | 3140 | u8 autoneg; |
3140 | 3141 | ||
3141 | /* Describes what we actually have. */ | 3142 | /* Describes what we actually have. */ |
3143 | u32 active_advertising; | ||
3142 | u16 active_speed; | 3144 | u16 active_speed; |
3143 | u8 active_duplex; | 3145 | u8 active_duplex; |
3146 | u8 active_autoneg; | ||
3144 | #define SPEED_INVALID 0xffff | 3147 | #define SPEED_INVALID 0xffff |
3145 | #define DUPLEX_INVALID 0xff | 3148 | #define DUPLEX_INVALID 0xff |
3146 | #define AUTONEG_INVALID 0xff | 3149 | #define AUTONEG_INVALID 0xff |