* [Ubuntu PATCH] forcedeth: Let the driver work when no PHY is found
@ 2006-06-14 23:23 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2006-06-14 23:23 UTC (permalink / raw)
To: netdev; +Cc: akpm, manfred, jgarzik
From: Ben Collins <bcollins@ubuntu.com>
[UBUNTU:forcedeth] Let the driver work when no PHY is found
This matches breezy behavior.
Reference: https://launchpad.net/products/launchpad/+bug/45257
http://www.kernel.org/git/?p=linux/kernel/git/bcollins/ubuntu-dapper.git;a=commitdiff;h=38c1aaedc1f907e138698e54ceadeb9ae560b0d7
Signed-off-by: Ben Collins <bcollins@ubuntu.com>
---
--- a/drivers/net/forcedeth.c
+++ b/drivers/net/forcedeth.c
@@ -2582,14 +2582,13 @@ static int __devinit nv_probe(struct pci
np->phy_oui = id1 | id2;
break;
}
- if (i == 33) {
+
+ /* Let the damn card work if it can */
+ if (i == 33)
printk(KERN_INFO "%s: open: Could not find a valid PHY.\n",
pci_name(pci_dev));
- goto out_freering;
- }
-
- /* reset it */
- phy_init(dev);
+ else
+ phy_init(dev);
/* set default link speed settings */
np->linkspeed = NVREG_LINKSPEED_FORCE|NVREG_LINKSPEED_10;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-06-14 22:23 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-14 23:23 [Ubuntu PATCH] forcedeth: Let the driver work when no PHY is found Randy Dunlap
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.