diff mbox series

[net] net: stmmac: add est_irq_status callback function for GMAC 4.10 and 5.10

Message ID 20210726022020.5907-1-mohammad.athari.ismail@intel.com (mailing list archive)
State Accepted
Commit 94cbe7db7d757c2d481c3617ab5579a28cfc2175
Delegated to: Netdev Maintainers
Headers show
Series [net] net: stmmac: add est_irq_status callback function for GMAC 4.10 and 5.10 | expand

Checks

Context Check Description
netdev/cover_letter success Link
netdev/fixes_present success Link
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for net
netdev/subject_prefix success Link
netdev/cc_maintainers warning 3 maintainers not CCed: alexandre.torgue@foss.st.com linux-arm-kernel@lists.infradead.org linux-stm32@st-md-mailman.stormreply.com
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Link
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 1 this patch: 1
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes success Link
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 14 lines checked
netdev/build_allmodconfig_warn success Errors and warnings before: 1 this patch: 1
netdev/header_inline success Link

Commit Message

Mohammad Athari Bin Ismail July 26, 2021, 2:20 a.m. UTC
From: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>

Assign dwmac5_est_irq_status to est_irq_status callback function for
GMAC 4.10 and 5.10. With this, EST related interrupts could be handled
properly.

Fixes: e49aa315cb01 ("net: stmmac: EST interrupts handling and error reporting")
Cc: <stable@vger.kernel.org> # 5.13.x
Signed-off-by: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Wong Vee Khee July 26, 2021, 3:07 a.m. UTC | #1
On Mon, Jul 26, 2021 at 10:20:20AM +0800, mohammad.athari.ismail@intel.com wrote:
> From: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>
> 
> Assign dwmac5_est_irq_status to est_irq_status callback function for
> GMAC 4.10 and 5.10. With this, EST related interrupts could be handled
> properly.
> 
> Fixes: e49aa315cb01 ("net: stmmac: EST interrupts handling and error reporting")
> Cc: <stable@vger.kernel.org> # 5.13.x
> Signed-off-by: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>

Acked-by: Wong Vee Khee <vee.khee.wong@linux.intel.com>
patchwork-bot+netdevbpf@kernel.org July 26, 2021, 11:40 a.m. UTC | #2
Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon, 26 Jul 2021 10:20:20 +0800 you wrote:
> From: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>
> 
> Assign dwmac5_est_irq_status to est_irq_status callback function for
> GMAC 4.10 and 5.10. With this, EST related interrupts could be handled
> properly.
> 
> Fixes: e49aa315cb01 ("net: stmmac: EST interrupts handling and error reporting")
> Cc: <stable@vger.kernel.org> # 5.13.x
> Signed-off-by: Mohammad Athari Bin Ismail <mohammad.athari.ismail@intel.com>
> 
> [...]

Here is the summary with links:
  - [net] net: stmmac: add est_irq_status callback function for GMAC 4.10 and 5.10
    https://git.kernel.org/netdev/net/c/94cbe7db7d75

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c b/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
index 67ba083eb90c..b21745368983 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
@@ -1249,6 +1249,7 @@  const struct stmmac_ops dwmac410_ops = {
 	.config_l3_filter = dwmac4_config_l3_filter,
 	.config_l4_filter = dwmac4_config_l4_filter,
 	.est_configure = dwmac5_est_configure,
+	.est_irq_status = dwmac5_est_irq_status,
 	.fpe_configure = dwmac5_fpe_configure,
 	.fpe_send_mpacket = dwmac5_fpe_send_mpacket,
 	.fpe_irq_status = dwmac5_fpe_irq_status,
@@ -1300,6 +1301,7 @@  const struct stmmac_ops dwmac510_ops = {
 	.config_l3_filter = dwmac4_config_l3_filter,
 	.config_l4_filter = dwmac4_config_l4_filter,
 	.est_configure = dwmac5_est_configure,
+	.est_irq_status = dwmac5_est_irq_status,
 	.fpe_configure = dwmac5_fpe_configure,
 	.fpe_send_mpacket = dwmac5_fpe_send_mpacket,
 	.fpe_irq_status = dwmac5_fpe_irq_status,