diff options
author | 2006-02-17 17:42:52 +0000 | |
---|---|---|
committer | 2006-02-17 17:42:52 +0000 | |
commit | 8317801e7977836e4c252066e2e31127e1c0ec5e (patch) | |
tree | 35a2862dbb08177f9d049069e5e59f1da31f5566 | |
parent | Add a generic delay function as per the ACPI spec. (diff) | |
download | wireguard-openbsd-8317801e7977836e4c252066e2e31127e1c0ec5e.tar.xz wireguard-openbsd-8317801e7977836e4c252066e2e31127e1c0ec5e.zip |
Remove earlier introduced delays. We really only need them during autconf.
ok jordan@
-rw-r--r-- | sys/dev/acpi/acpi.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index aadd9d226aa..2b127c583c7 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.32 2006/02/17 17:35:59 marco Exp $ */ +/* $OpenBSD: acpi.c,v 1.33 2006/02/17 17:42:52 marco Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -171,11 +171,13 @@ acpi_gasio(struct acpi_softc *sc, int iodir, int iospace, uint64_t address, } } - /* XXX bah! blame ACPI spec for this, cleanup later */ + /* During autoconf some devices are still gathering + * information. Delay here to give them an opportunity + * to finish. During runtime we simply need to ignore + * transient values. + */ if (cold) delay(10000); - else - tsleep(sc, PWAIT, "acpiwait", 1); } acpi_bus_space_unmap(sc->sc_iot, ioh, len, &ioaddr); break; |