diff options
author | cheloha <cheloha@cvs.openbsd.org> | 2020-01-22 03:26:03 +0000 |
---|---|---|
committer | cheloha <cheloha@cvs.openbsd.org> | 2020-01-22 03:26:03 +0000 |
commit | 6a43d3e9a492f4b70679b25a55df2eb80e06bd30 (patch) | |
tree | 1388239fa517426c2c07285a1cafdff1c01f6a58 /sys/dev/ic | |
parent | f4544f1d265f306ca01d9d4ad9f5ef4108681823 (diff) |
wbsd(4): timeout_add(9) -> timeout_add_msec(9); ok deraadt@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/w83l518d_sdmmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/w83l518d_sdmmc.c b/sys/dev/ic/w83l518d_sdmmc.c index 76c7a10c8d6..51d4fdde6a6 100644 --- a/sys/dev/ic/w83l518d_sdmmc.c +++ b/sys/dev/ic/w83l518d_sdmmc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: w83l518d_sdmmc.c,v 1.4 2016/05/05 11:01:08 kettenis Exp $ */ +/* $OpenBSD: w83l518d_sdmmc.c,v 1.5 2020/01/22 03:26:02 cheloha Exp $ */ /* $NetBSD: w83l518d_sdmmc.c,v 1.1 2009/09/30 20:44:50 jmcneill Exp $ */ /* @@ -578,7 +578,7 @@ wb_sdmmc_intr(struct wb_softc *wb) "\5CRC\6FIFO\7CARD\010PENDING"); if (val & WB_INT_CARD) - timeout_add(&wb->wb_sdmmc_to, hz / 4); + timeout_add_msec(&wb->wb_sdmmc_to, 250); return 1; } |