diff options
author | Hariprasad Shenai <hariprasad@chelsio.com> | 2016-04-26 20:10:29 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-26 13:23:58 -0400 |
commit | ddc7740d9a7c7e61650309a81037f12d5cfad88e (patch) | |
tree | 92152ce39dddf1c739e3eb66b1896d0a9fdfc745 /drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h | |
parent | 23853a0a9a7621922a21759eeed8c5bc09c71c54 (diff) | |
download | talos-obmc-linux-ddc7740d9a7c7e61650309a81037f12d5cfad88e.tar.gz talos-obmc-linux-ddc7740d9a7c7e61650309a81037f12d5cfad88e.zip |
cxgb4: Decode link down reason code obtained from firmware
Signed-off-by: Hariprasad Shenai <hariprasad@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h b/drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h index 7ad6d4e75b2a..392d6644fdd8 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h +++ b/drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h @@ -2510,6 +2510,11 @@ struct fw_port_cmd { #define FW_PORT_CMD_PTYPE_G(x) \ (((x) >> FW_PORT_CMD_PTYPE_S) & FW_PORT_CMD_PTYPE_M) +#define FW_PORT_CMD_LINKDNRC_S 5 +#define FW_PORT_CMD_LINKDNRC_M 0x7 +#define FW_PORT_CMD_LINKDNRC_G(x) \ + (((x) >> FW_PORT_CMD_LINKDNRC_S) & FW_PORT_CMD_LINKDNRC_M) + #define FW_PORT_CMD_MODTYPE_S 0 #define FW_PORT_CMD_MODTYPE_M 0x1f #define FW_PORT_CMD_MODTYPE_V(x) ((x) << FW_PORT_CMD_MODTYPE_S) |