Module Name:    src
Committed By:   thorpej
Date:           Tue Oct 12 00:21:35 UTC 2021

Modified Files:
        src/sys/dev/ic: comvar.h

Log Message:
Fix the build by adding 'sc_hup_pending' member to com_softc that
was apparently forgotten.


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/sys/dev/ic/comvar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/comvar.h
diff -u src/sys/dev/ic/comvar.h:1.94 src/sys/dev/ic/comvar.h:1.95
--- src/sys/dev/ic/comvar.h:1.94	Thu Mar 25 05:34:49 2021
+++ src/sys/dev/ic/comvar.h	Tue Oct 12 00:21:34 2021
@@ -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;
 

Reply via email to