diff options
| author | 2002-04-22 01:48:37 +0000 | |
|---|---|---|
| committer | 2002-04-22 01:48:37 +0000 | |
| commit | c10c4b2d4b36d145e7a8fec0bb33325cd532b1c8 (patch) | |
| tree | 21adb5b17c7cc6f80e76edca7d01e8e1f51493d3 /sys/arch/hppa/dev/asp.c | |
| parent | proper coms config (diff) | |
| download | wireguard-openbsd-c10c4b2d4b36d145e7a8fec0bb33325cd532b1c8.tar.xz wireguard-openbsd-c10c4b2d4b36d145e7a8fec0bb33325cd532b1c8.zip | |
do not forget to set the hpamask
Diffstat (limited to 'sys/arch/hppa/dev/asp.c')
| -rw-r--r-- | sys/arch/hppa/dev/asp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/dev/asp.c b/sys/arch/hppa/dev/asp.c index d8a5824c6e5..973fd94ef7c 100644 --- a/sys/arch/hppa/dev/asp.c +++ b/sys/arch/hppa/dev/asp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asp.c,v 1.6 2002/03/14 01:26:31 millert Exp $ */ +/* $OpenBSD: asp.c,v 1.7 2002/04/22 01:48:37 mickey Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -123,6 +123,7 @@ struct asp_softc { volatile struct asp_trs *sc_trs; }; +#define ASP_IOMASK 0xfff00000 /* ASP "Primary Controller" HPA */ #define ASP_CHPA 0xF0800000 @@ -208,6 +209,7 @@ aspattach(parent, self, aux) sc->sc_ic.gsc_intr_ack = asp_intr_ack; ga.ga_ca = *ca; /* clone from us */ + ga.ga_hpamask = ASP_IOMASK; ga.ga_name = "gsc"; ga.ga_ic = &sc->sc_ic; config_found(self, &ga, gscprint); |
