summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2007-05-26 01:42:19 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2007-05-26 01:42:19 +0000
commit033fdc3ba5b7b60f1bbd18784dfd07e0a133ae6c (patch)
tree1daf536cc1ae0a2d69ddab8f52b8da05ebd18409
parent12e3ee03c46231b22c62a4a81604a9f276429292 (diff)
increase the delay to wait for the firmware to become ready, the card needs
some more time to initialize in the dell server than in the hp server.
-rw-r--r--sys/dev/pci/if_nx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_nx.c b/sys/dev/pci/if_nx.c
index b77d00db6a9..626112f64b9 100644
--- a/sys/dev/pci/if_nx.c
+++ b/sys/dev/pci/if_nx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_nx.c,v 1.43 2007/05/26 01:10:52 reyk Exp $ */
+/* $OpenBSD: if_nx.c,v 1.44 2007/05/26 01:42:18 reyk Exp $ */
/*
* Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org>
@@ -1139,7 +1139,7 @@ nxb_wait(struct nxb_softc *sc, bus_size_t reg, u_int32_t val,
if (data != val)
goto done;
}
- delay(1);
+ delay(10);
}
return (-1);