diff options
| author | thorpej <thorpej@NetBSD.org> | 2021-10-12 00:21:34 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2021-10-12 00:21:34 +0000 |
| commit | 334c446ebb145ebfca8cf955d026d2fcb51600af (patch) | |
| tree | 074366ea28ee7e64a69f3a09f0465af9da836ded /sys/dev | |
| parent | 7ef617a184a56221f35d2347ba6e1a939c89d5bb (diff) | |
Fix the build by adding 'sc_hup_pending' member to com_softc that
was apparently forgotten.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/comvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/comvar.h b/sys/dev/ic/comvar.h index 7a70f2dc672..c7650e20236 100644 --- a/sys/dev/ic/comvar.h +++ b/sys/dev/ic/comvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: comvar.h,v 1.94 2021/03/25 05:34:49 rin Exp $ */ +/* $NetBSD: comvar.h,v 1.95 2021/10/12 00:21:34 thorpej Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -125,6 +125,7 @@ struct com_softc { callout_t sc_diag_callout; callout_t sc_poll_callout; + struct timeval sc_hup_pending; int sc_frequency; |
