summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>2003-04-07 17:38:51 +0000
committermickey <mickey@openbsd.org>2003-04-07 17:38:51 +0000
commit1693e53d082d0a43d0a8954e6faa5d1001aa9458 (patch)
tree3580e2f266b383465617c0836773ee730f22c4e8
parentenable viper touching again. (diff)
downloadwireguard-openbsd-1693e53d082d0a43d0a8954e6faa5d1001aa9458.tar.xz
wireguard-openbsd-1693e53d082d0a43d0a8954e6faa5d1001aa9458.zip
remove dead stuff
-rw-r--r--sys/arch/hppa/gsc/gscbusvar.h21
1 files changed, 3 insertions, 18 deletions
diff --git a/sys/arch/hppa/gsc/gscbusvar.h b/sys/arch/hppa/gsc/gscbusvar.h
index 653e5481d01..31715e01ace 100644
--- a/sys/arch/hppa/gsc/gscbusvar.h
+++ b/sys/arch/hppa/gsc/gscbusvar.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: gscbusvar.h,v 1.9 2002/12/18 23:52:45 mickey Exp $ */
+/* $OpenBSD: gscbusvar.h,v 1.10 2003/04/07 17:38:51 mickey Exp $ */
/*
- * Copyright (c) 1998-2002 Michael Shalayeff
+ * Copyright (c) 1998-2003 Michael Shalayeff
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -50,15 +50,6 @@ struct gsc_attach_args {
struct gscbus_ic *ga_ic; /* IC pointer */
};
-struct gscbus_intr {
- int pri;
- int (*handler)(void *);
- void *arg;
- void *softc;
- void *cpuiv;
- struct evcnt evcnt;
-};
-
struct gsc_softc {
struct device sc_dev;
void *sc_ih;
@@ -66,17 +57,11 @@ struct gsc_softc {
bus_space_tag_t sc_iot;
struct gscbus_ic *sc_ic;
struct hppa_bus_dma_tag sc_dmatag;
-
- /* interrupt vectors */
- struct gscbus_intr sc_intrvs[32];
- u_int32_t sc_intrmask;
};
void *gsc_intr_establish(struct gsc_softc *sc, int pri, int irq,
- int (*handler)(void *v), void *arg,
- struct device *name);
+ int (*handler)(void *v), void *arg, struct device *name);
void gsc_intr_disestablish(struct gsc_softc *sc, void *v);
int gsc_intr(void *);
int gscprint(void *, const char *);
-