diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-10-27 16:17:44 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-10-27 16:17:44 +0000 |
commit | b11befb72358831711ca11c43f026981468703e4 (patch) | |
tree | bbb175d5f08b8d4a15bfe604aebd14e19e48d6a2 | |
parent | 1c1101a5d97b1eea80f7dd7d4bfe1f4ee4b1d1e4 (diff) |
vmm is also available on i386 now, so don't restrict it to amd64.
OK mikeb@ mlarkin@
-rw-r--r-- | sys/dev/pv/pvbus.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pv/pvbus.c b/sys/dev/pv/pvbus.c index e7e03dd2507..1be95e4c064 100644 --- a/sys/dev/pv/pvbus.c +++ b/sys/dev/pv/pvbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pvbus.c,v 1.13 2016/09/21 16:00:01 reyk Exp $ */ +/* $OpenBSD: pvbus.c,v 1.14 2016/10/27 16:17:43 reyk Exp $ */ /* * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> @@ -36,9 +36,7 @@ #include <machine/cpu.h> #include <machine/conf.h> #include <machine/bus.h> -#ifdef __amd64__ #include <machine/vmmvar.h> -#endif #include <dev/rndvar.h> @@ -92,9 +90,7 @@ struct pvbus_type { { "VMwareVMware", "VMware" }, { "XenVMMXenVMM", "Xen", pvbus_xen, pvbus_xen_print }, { "bhyve bhyve ", "bhyve" }, -#ifdef __amd64__ { VMM_HV_SIGNATURE, "OpenBSD" }, -#endif }; struct bus_dma_tag pvbus_dma_tag = { |