summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheloha <cheloha@cvs.openbsd.org>2020-02-25 02:09:23 +0000
committercheloha <cheloha@cvs.openbsd.org>2020-02-25 02:09:23 +0000
commitea34bfe96a6b2e7d3d6749b56040eb6cabedac56 (patch)
tree4af92348119eac119c9c5cd1a8d11063f7bccafc
parentafb887040b252f643dfe5ae0d34983fe47fc218b (diff)
pcic(4): i82365.c: tsleep(9) -> tsleep_nsec(9)
Yet another straightforward ticks-to-milliseconds conversion. I am honestly unsure what particular driver this file belongs to. It seems to be related to pcic(4) and/or pcmcia(4) so I've marked this diff with pcic(4) in the summary line. No complaints on tech@ after six weeks.
-rw-r--r--sys/dev/ic/i82365.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/i82365.c b/sys/dev/ic/i82365.c
index c35035ea941..e23230b7d1a 100644
--- a/sys/dev/ic/i82365.c
+++ b/sys/dev/ic/i82365.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i82365.c,v 1.37 2019/12/31 10:05:32 mpi Exp $ */
+/* $OpenBSD: i82365.c,v 1.38 2020/02/25 02:09:22 cheloha Exp $ */
/* $NetBSD: i82365.c,v 1.10 1998/06/09 07:36:55 thorpej Exp $ */
/*
@@ -429,8 +429,8 @@ pcic_event_thread(arg)
} else {
splx(s);
/* sleep .25s to be enqueued chatterling interrupts */
- (void) tsleep((caddr_t)pcic_event_thread, PWAIT,
- "pcicss", hz/4);
+ tsleep(pcic_event_thread, PWAIT, "pcicss",
+ MSEC_TO_NSEC(250));
}
pcic_event_process(h, pe);
}