mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Fix suspend/resume support in via-rhine2
@ 2004-10-21 10:42 Pavel Machek
  0 siblings, 0 replies; only message in thread
From: Pavel Machek @ 2004-10-21 10:42 UTC (permalink / raw)
  To: rl, jgarzik, kernel list; +Cc: Andrew Morton

Hi!

If I want via-rhine to work after resume, I need this patch. It stops
interrupts during suspend and reinitializes them after that. Please
apply,

								Pavel

--- clean/drivers/net/via-rhine.c	2004-10-01 00:30:16.000000000 +0200
+++ linux/drivers/net/via-rhine.c	2004-10-21 12:32:56.000000000 +0200
@@ -1957,6 +1957,7 @@
 	rhine_shutdown(&pdev->dev);
 	spin_unlock_irqrestore(&rp->lock, flags);
 
+	free_irq(dev->irq, dev);
 	return 0;
 }
 
@@ -1970,6 +1971,9 @@
 	if (!netif_running(dev))
 		return 0;
 
+        if (request_irq(dev->irq, rhine_interrupt, SA_SHIRQ, dev->name, dev))
+		printk(KERN_ERR "via-rhine %s: request_irq failed\n", dev->name);
+
 	ret = pci_set_power_state(pdev, 0);
 	if (debug > 1)
 		printk(KERN_INFO "%s: Entering power state D0 %s (%d).\n",


-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-10-21 10:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-21 10:42 Fix suspend/resume support in via-rhine2 Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome