Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src-draft/trunk]: src/sys/dev/usb Use DELAY() unitl fimware is ready.
details: https://anonhg.NetBSD.org/src-all/rev/6b4f908b75bc
branches: trunk
changeset: 364678:6b4f908b75bc
user: Nathanial Sloss <nat%netbsd.org@localhost>
date: Fri Apr 08 14:23:39 2022 +1000
description:
Use DELAY() unitl fimware is ready.
There is still a generic issue with timeouts/kpause.
diffstat:
sys/dev/usb/if_urtwn.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (13 lines):
diff -r f93810134526 -r 6b4f908b75bc sys/dev/usb/if_urtwn.c
--- a/sys/dev/usb/if_urtwn.c Fri Apr 08 14:22:04 2022 +1000
+++ b/sys/dev/usb/if_urtwn.c Fri Apr 08 14:23:39 2022 +1000
@@ -4730,7 +4730,8 @@
urtwn_delay_ms(struct urtwn_softc *sc, int ms)
{
- if (sc->sc_uw.uw_udev == NULL)
+ if (sc->sc_uw.uw_udev == NULL ||
+ !ISSET(sc->sc_uw.uw_flags, URTWN_FLAG_FWREADY))
DELAY(ms * 1000);
else
usbd_delay_ms(sc->sc_uw.uw_udev, ms);
Home |
Main Index |
Thread Index |
Old Index