Thread (5 messages) flat view 5 messages, 2 authors, 2011-02-12
STALE5675d

Re: [PATCH 1/2] atmel/macb: fix device name when SOFT/HARD_IRQ enabled

From: Sergei Shtylyov <hidden>
Date: 2011-02-09 13:41:38
Also in: linux-arm-kernel

Hello.

On 09-02-2011 15:43, Jean-Christophe PLAGNIOL-VILLARD wrote:
From: Paul Chavent<redacted>
When listing processes on a system with SOFT/HARD_IRQ enabled,
the name of the ethernet device is [irq/eth%d] (instead of [irq/eth0] for example).
This patch call the request_irq function after having initialized the name of the device.
Signed-off-by: Paul Chavent<redacted>
Signed-off-by: Nicolas Ferre<redacted>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD<redacted>
[...]
quoted hunk ↗ jump to hunk
diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index f69e73e..d642e08 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
[...]
quoted hunk ↗ jump to hunk
@@ -1219,13 +1209,23 @@ static int __init macb_probe(struct platform_device *pdev)
  	err = register_netdev(dev);
  	if (err) {
  		dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
-		goto err_out_free_irq;
+		goto err_out_iounmap;
  	}

-	if (macb_mii_init(bp) != 0) {
+	dev->irq = platform_get_irq(pdev, 0);
    platform_get_irq() can fail...
+	err = request_irq(dev->irq, macb_interrupt, IRQF_SAMPLE_RANDOM,
+			  dev->name, dev);
+	if (err) {
+		printk(KERN_ERR
+		       "%s: Unable to request IRQ %d (error %d)\n",
+		       dev->name, dev->irq, err);
  		goto err_out_unregister_netdev;
  	}

+	if (macb_mii_init(bp) != 0) {
+		goto err_out_free_irq;
+	}
    {} not needed here. I think checkpatch.pl should notice this.

WBR, Sergei
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help