remove unused timeout from softc
authorjsg <jsg@openbsd.org>
Wed, 4 Sep 2024 07:47:21 +0000 (07:47 +0000)
committerjsg <jsg@openbsd.org>
Wed, 4 Sep 2024 07:47:21 +0000 (07:47 +0000)
sys/dev/ic/psp.c

index 63fcb5a..5cd6c39 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: psp.c,v 1.2 2024/09/04 07:45:08 jsg Exp $ */
+/*     $OpenBSD: psp.c,v 1.3 2024/09/04 07:47:21 jsg Exp $ */
 
 /*
  * Copyright (c) 2023, 2024 Hans-Joerg Hoexer <hshoexer@genua.de>
@@ -19,7 +19,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/timeout.h>
 #include <sys/pledge.h>
 #include <sys/rwlock.h>
 
@@ -37,8 +36,6 @@ struct psp_softc {
        bus_space_tag_t         sc_iot;
        bus_space_handle_t      sc_ioh;
 
-       struct timeout          sc_tick;
-
        bus_dma_tag_t           sc_dmat;
        uint32_t                sc_capabilities;