diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-28 11:45:06 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-28 11:45:06 +0000 |
commit | 72a0952d01abce4754962721df9fdf34d3337312 (patch) | |
tree | a23857497b1561d4a033afbd013fcba79a5c7a6c /sys/dev/ic/rtwvar.h | |
parent | 0aa00711c3898f965b1e1c32b6165ba92baff525 (diff) |
timeout_add -> timeout_add_msec
ok jsg@
Diffstat (limited to 'sys/dev/ic/rtwvar.h')
-rw-r--r-- | sys/dev/ic/rtwvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/rtwvar.h b/sys/dev/ic/rtwvar.h index 7ba22468590..7fd69907160 100644 --- a/sys/dev/ic/rtwvar.h +++ b/sys/dev/ic/rtwvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtwvar.h,v 1.25 2009/06/10 18:41:07 miod Exp $ */ +/* $OpenBSD: rtwvar.h,v 1.26 2009/07/28 11:45:05 blambert Exp $ */ /* $NetBSD: rtwvar.h,v 1.10 2004/12/26 22:37:57 mycroft Exp $ */ /*- @@ -335,8 +335,8 @@ union rtw_keys { u_int32_t rk_words[16]; }; -#define RTW_LED_SLOW_TICKS MAX(1, hz/2) -#define RTW_LED_FAST_TICKS MAX(1, hz/10) +#define RTW_LED_SLOW_MSEC 500 +#define RTW_LED_FAST_MSEC 100 struct rtw_led_state { #define RTW_LED0 0x1 |