Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1661584 > unrolled thread

[PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq

Started byGrygorii Strashko <grygorii.strashko@ti.com>
First post2017-06-08 21:00 +0200
Last post2017-06-09 01:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq Grygorii Strashko <grygorii.strashko@ti.com> - 2017-06-08 21:00 +0200
    Re: [PATCH net-next] net: ethernet: ti: cpdma: do not enable host  error misc irq David Miller <davem@davemloft.net> - 2017-06-09 01:40 +0200

#1661584 — [PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq

FromGrygorii Strashko <grygorii.strashko@ti.com>
Date2017-06-08 21:00 +0200
Subject[PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq
Message-ID<tQaOZ-7W3-15@gated-at.bofh.it>
CPSW driver does not handle this interrupt, so there are no reasons to enable
it in hardware.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
---
no changes, just resubmitting with proper subj line.

 drivers/net/ethernet/ti/davinci_cpdma.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/ti/davinci_cpdma.c b/drivers/net/ethernet/ti/davinci_cpdma.c
index 7ecc6b7..e4d6edf 100644
--- a/drivers/net/ethernet/ti/davinci_cpdma.c
+++ b/drivers/net/ethernet/ti/davinci_cpdma.c
@@ -645,7 +645,7 @@ EXPORT_SYMBOL_GPL(cpdma_ctlr_destroy);
 int cpdma_ctlr_int_ctrl(struct cpdma_ctlr *ctlr, bool enable)
 {
 	unsigned long flags;
-	int i, reg;
+	int i;
 
 	spin_lock_irqsave(&ctlr->lock, flags);
 	if (ctlr->state != CPDMA_STATE_ACTIVE) {
@@ -653,9 +653,6 @@ int cpdma_ctlr_int_ctrl(struct cpdma_ctlr *ctlr, bool enable)
 		return -EINVAL;
 	}
 
-	reg = enable ? CPDMA_DMAINTMASKSET : CPDMA_DMAINTMASKCLEAR;
-	dma_reg_write(ctlr, reg, CPDMA_DMAINT_HOSTERR);
-
 	for (i = 0; i < ARRAY_SIZE(ctlr->channels); i++) {
 		if (ctlr->channels[i])
 			cpdma_chan_int_ctrl(ctlr->channels[i], enable);
-- 
2.10.1

[toc] | [next] | [standalone]


#1661815 — Re: [PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq

FromDavid Miller <davem@davemloft.net>
Date2017-06-09 01:40 +0200
SubjectRe: [PATCH net-next] net: ethernet: ti: cpdma: do not enable host error misc irq
Message-ID<tQfbX-2iK-3@gated-at.bofh.it>
In reply to#1661584
From: Grygorii Strashko <grygorii.strashko@ti.com>
Date: Thu, 8 Jun 2017 13:51:52 -0500

> CPSW driver does not handle this interrupt, so there are no reasons to enable
> it in hardware.
> 
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>

Applied.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web