diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-06 22:40:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-06 22:40:06 +0000 |
commit | c59e5e6dbdacdeef70d0b723a5087e77503d2ee0 (patch) | |
tree | 77345f6125881e18b2eff9e526f7da290bf3b006 /sys/arch | |
parent | 8469a07f6c5517718d15c9929a28f55c1713803a (diff) |
The global_int information acpi collects is not used by amd64.
ok ketttenis
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/mpbios.c | 3 | ||||
-rw-r--r-- | sys/arch/amd64/include/mpconfig.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/mpbios.c b/sys/arch/amd64/amd64/mpbios.c index 57a3c9e7695..ed31eb7aed3 100644 --- a/sys/arch/amd64/amd64/mpbios.c +++ b/sys/arch/amd64/amd64/mpbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpbios.c,v 1.18 2009/04/21 19:18:09 kettenis Exp $ */ +/* $OpenBSD: mpbios.c,v 1.19 2011/03/06 22:40:05 deraadt Exp $ */ /* $NetBSD: mpbios.c,v 1.7 2003/05/15 16:32:50 fvdl Exp $ */ /*- @@ -1022,7 +1022,6 @@ mpbios_int(const u_int8_t *ent, int enttype, struct mp_intr_map *mpi) } mpi->bus = mpb; mpi->bus_pin = dev; - mpi->global_int = -1; mpi->type = type; mpi->flags = flags; diff --git a/sys/arch/amd64/include/mpconfig.h b/sys/arch/amd64/include/mpconfig.h index d42d0b37dca..7b78dfcfdc5 100644 --- a/sys/arch/amd64/include/mpconfig.h +++ b/sys/arch/amd64/include/mpconfig.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mpconfig.h,v 1.6 2008/01/15 19:30:32 kettenis Exp $ */ +/* $OpenBSD: mpconfig.h,v 1.7 2011/03/06 22:40:05 deraadt Exp $ */ /* $NetBSD: mpconfig.h,v 1.2 2003/05/11 00:05:52 fvdl Exp $ */ /* @@ -33,7 +33,6 @@ struct mp_intr_map { int flags; /* from mp spec intr record */ u_int32_t redir; int cpu_id; - int global_int; /* ACPI global interrupt number */ }; #if defined(_KERNEL) |