Commit e1bf0d5e authored by Easwar Hariharan's avatar Easwar Hariharan Committed by Doug Ledford

staging/rdma/hfi1, IB/core: Fix LinkDownReason define for consistency

LinkDownReason LocalMediaNotInstalled lacked an underscore
and was inconsistent with other defines in the same family.
This patch fixes this.
Reviewed-by: default avatarIra Weiny <ira.weiny@intel.com>
Signed-off-by: default avatarEaswar Hariharan <easwar.hariharan@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 45b59eef
...@@ -5950,12 +5950,12 @@ static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg) ...@@ -5950,12 +5950,12 @@ static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg)
if ((ppd->offline_disabled_reason > if ((ppd->offline_disabled_reason >
HFI1_ODR_MASK( HFI1_ODR_MASK(
OPA_LINKDOWN_REASONLOCAL_MEDIA_NOT_INSTALLED)) || OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED)) ||
(ppd->offline_disabled_reason == (ppd->offline_disabled_reason ==
HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))) HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE)))
ppd->offline_disabled_reason = ppd->offline_disabled_reason =
HFI1_ODR_MASK( HFI1_ODR_MASK(
OPA_LINKDOWN_REASONLOCAL_MEDIA_NOT_INSTALLED); OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
if (ppd->host_link_state == HLS_DN_POLL) { if (ppd->host_link_state == HLS_DN_POLL) {
/* /*
......
...@@ -816,7 +816,7 @@ void tune_serdes(struct hfi1_pportdata *ppd) ...@@ -816,7 +816,7 @@ void tune_serdes(struct hfi1_pportdata *ppd)
} else } else
ppd->offline_disabled_reason = ppd->offline_disabled_reason =
HFI1_ODR_MASK( HFI1_ODR_MASK(
OPA_LINKDOWN_REASONLOCAL_MEDIA_NOT_INSTALLED); OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
break; break;
default: default:
dd_dev_info(ppd->dd, "%s: Unknown port type\n", __func__); dd_dev_info(ppd->dd, "%s: Unknown port type\n", __func__);
......
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
#define OPA_LINKDOWN_REASON_WIDTH_POLICY 41 #define OPA_LINKDOWN_REASON_WIDTH_POLICY 41
/* 42-48 reserved */ /* 42-48 reserved */
#define OPA_LINKDOWN_REASON_DISCONNECTED 49 #define OPA_LINKDOWN_REASON_DISCONNECTED 49
#define OPA_LINKDOWN_REASONLOCAL_MEDIA_NOT_INSTALLED 50 #define OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED 50
#define OPA_LINKDOWN_REASON_NOT_INSTALLED 51 #define OPA_LINKDOWN_REASON_NOT_INSTALLED 51
#define OPA_LINKDOWN_REASON_CHASSIS_CONFIG 52 #define OPA_LINKDOWN_REASON_CHASSIS_CONFIG 52
/* 53 reserved */ /* 53 reserved */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment