* [PATCH v2 1/2] common/sfc_efx/base: resolve warnings about unused variables
[not found] ` <20250802043010.39134-1-ivan.malov@arknetworks.am>
@ 2025-08-02 4:30 ` Ivan Malov
2025-08-02 4:30 ` [PATCH v2 2/2] common/sfc_efx/base: clean up type-related compiler warnings Ivan Malov
1 sibling, 0 replies; 2+ messages in thread
From: Ivan Malov @ 2025-08-02 4:30 UTC (permalink / raw)
To: dev
Cc: Andrew Rybchenko, Andy Moreton, Pieter Jansen Van Vuuren,
Viacheslav Galaktionov, stable
Fixes: 2a5cf77e6de8 ("common/sfc_efx/base: provide PHY link get method on Medford4")
Fixes: 8e79cd30230d ("common/sfc_efx/base: implement PHY link control for Medford4")
Fixes: f2f77453cb9f ("common/sfc_efx/base: fill in software LUT for MAC statistics")
Cc: stable@dpdk.org
Suggested-by: Andy Moreton <andy.moreton@amd.com>
Signed-off-by: Ivan Malov <ivan.malov@arknetworks.am>
---
drivers/common/sfc_efx/base/efx_np.c | 3 ---
drivers/common/sfc_efx/base/medford4_phy.c | 1 -
2 files changed, 4 deletions(-)
diff --git a/drivers/common/sfc_efx/base/efx_np.c b/drivers/common/sfc_efx/base/efx_np.c
index a19c986691..d7692fdba7 100644
--- a/drivers/common/sfc_efx/base/efx_np.c
+++ b/drivers/common/sfc_efx/base/efx_np.c
@@ -782,7 +782,6 @@ efx_np_stats_describe(
EFX_MCDI_DECLARE_BUF(payload,
MC_CMD_MAC_STATISTICS_DESCRIPTOR_IN_LEN,
MC_CMD_MAC_STATISTICS_DESCRIPTOR_OUT_LENMAX_MCDI2);
- efx_port_t *epp = &(enp->en_port);
uint32_t nprocessed;
efx_mcdi_req_t req;
uint8_t *entries;
@@ -1186,7 +1185,6 @@ efx_np_cap_sw_mask_to_hw_enum(
__out_opt uint16_t *enum_hwp)
{
unsigned int sw_nflags_req = 0;
- unsigned int sw_nflags_sup = 0;
uint32_t sw_check_mask = 0;
unsigned int i;
@@ -1289,7 +1287,6 @@ efx_np_link_ctrl(
uint16_t cap_enum_hw;
boolean_t supported;
efx_mcdi_req_t req;
- boolean_t phy_an;
efx_rc_t rc;
uint8_t fec;
diff --git a/drivers/common/sfc_efx/base/medford4_phy.c b/drivers/common/sfc_efx/base/medford4_phy.c
index 9ba6dfbc10..16e6dd2d84 100644
--- a/drivers/common/sfc_efx/base/medford4_phy.c
+++ b/drivers/common/sfc_efx/base/medford4_phy.c
@@ -34,7 +34,6 @@ medford4_phy_get_link(
efx_np_handle_t nph = enp->en_port.ep_np_handle;
efx_np_link_state_t ls;
efx_np_mac_state_t ms;
- uint32_t fcntl;
efx_rc_t rc;
rc = efx_np_link_state(enp, nph, &ls);
--
2.39.5
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH v2 2/2] common/sfc_efx/base: clean up type-related compiler warnings
[not found] ` <20250802043010.39134-1-ivan.malov@arknetworks.am>
2025-08-02 4:30 ` [PATCH v2 1/2] common/sfc_efx/base: resolve warnings about unused variables Ivan Malov
@ 2025-08-02 4:30 ` Ivan Malov
1 sibling, 0 replies; 2+ messages in thread
From: Ivan Malov @ 2025-08-02 4:30 UTC (permalink / raw)
To: dev
Cc: Andrew Rybchenko, Andy Moreton, Pieter Jansen Van Vuuren,
Viacheslav Galaktionov, stable
Fixes: 8e79cd30230d ("common/sfc_efx/base: implement PHY link control for Medford4")
Fixes: f2f77453cb9f ("common/sfc_efx/base: fill in software LUT for MAC statistics")
Cc: stable@dpdk.org
Suggested-by: Andy Moreton <andy.moreton@amd.com>
Signed-off-by: Ivan Malov <ivan.malov@arknetworks.am>
---
drivers/common/sfc_efx/base/efx_np.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/common/sfc_efx/base/efx_np.c b/drivers/common/sfc_efx/base/efx_np.c
index d7692fdba7..222d81c12e 100644
--- a/drivers/common/sfc_efx/base/efx_np.c
+++ b/drivers/common/sfc_efx/base/efx_np.c
@@ -750,7 +750,7 @@ efx_np_stat_describe(
return;
found:
- if (sw_id >= lut_nentries) {
+ if ((unsigned int)sw_id >= lut_nentries) {
/*
* Static mapping size and the size of lookup
* table are out-of-sync. Should never happen.
@@ -1383,7 +1383,7 @@ efx_np_link_ctrl(
}
EFSYS_ASSERT(cap_enum_hw <= UINT8_MAX);
- fec = cap_enum_hw;
+ fec = (uint8_t)cap_enum_hw;
MCDI_IN_SET_WORD(req, LINK_CTRL_IN_LINK_TECHNOLOGY, link_tech);
MCDI_IN_SET_DWORD(req, LINK_CTRL_IN_CONTROL_FLAGS, flags);
--
2.39.5
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-08-02 4:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20250711144349.9236-1-ivan.malov@arknetworks.am>
[not found] ` <20250802043010.39134-1-ivan.malov@arknetworks.am>
2025-08-02 4:30 ` [PATCH v2 1/2] common/sfc_efx/base: resolve warnings about unused variables Ivan Malov
2025-08-02 4:30 ` [PATCH v2 2/2] common/sfc_efx/base: clean up type-related compiler warnings Ivan Malov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).