From 334c446ebb145ebfca8cf955d026d2fcb51600af Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 12 Oct 2021 00:21:34 +0000 Subject: Fix the build by adding 'sc_hup_pending' member to com_softc that was apparently forgotten. --- sys/dev/ic/comvar.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/dev') 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; -- cgit