This trivial patch can go in the netdev can for 2.6.17.
It lets skge driver contribute to random entropy poll.

Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>

--- sky2.orig/drivers/net/skge.c        2006-02-27 10:00:48.000000000 -0800
+++ sky2/drivers/net/skge.c     2006-02-28 10:35:48.000000000 -0800
@@ -3314,7 +3314,9 @@
                goto err_out_free_hw;
        }
 
-       if ((err = request_irq(pdev->irq, skge_intr, SA_SHIRQ, DRV_NAME, hw))) {
+       err = request_irq(pdev->irq, skge_intr, SA_SHIRQ | SA_SAMPLE_RANDOM,
+                         DRV_NAME, hw);
+       if (err) {
                printk(KERN_ERR PFX "%s: cannot assign irq %d\n",
                       pci_name(pdev), pdev->irq);
                goto err_out_iounmap;
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to