diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-29 18:14:58 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-29 18:14:58 +0000 |
commit | b508e0e4684127e50f491d0aeb71240aa7b7535c (patch) | |
tree | 30d4441f93ae2706ba12fd11fce5d98d7e2559a7 /sys | |
parent | c0af532e23eadaf7d3600c87aa0509b833f4cff2 (diff) |
timeout_add -> timeout_add_msec
ok martynas@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/if_urtw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_urtw.c b/sys/dev/usb/if_urtw.c index 9841b115dc1..bcc01ccbcbb 100644 --- a/sys/dev/usb/if_urtw.c +++ b/sys/dev/usb/if_urtw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_urtw.c,v 1.25 2009/07/29 18:08:44 martynas Exp $ */ +/* $OpenBSD: if_urtw.c,v 1.26 2009/07/29 18:14:57 blambert Exp $ */ /*- * Copyright (c) 2009 Martynas Venckus <martynas@openbsd.org> @@ -3526,7 +3526,7 @@ urtw_task(void *arg) case IEEE80211_S_SCAN: urtw_set_chan(sc, ic->ic_bss->ni_chan); - timeout_add(&sc->scan_to, hz / 5); + timeout_add_msec(&sc->scan_to, 200); break; case IEEE80211_S_AUTH: |