diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-03-12 19:52:57 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-03-12 19:52:57 +0000 |
commit | cfd67fd78559d346f3c9f63c90c863c1b29e9c98 (patch) | |
tree | 6f43ef4c5ea92db3117911d1107e414cbc37588a /sys/dev/pci | |
parent | 43eaf2f018416a7c0bc9a2304526c4ac49d70a03 (diff) |
Mips ARC systems (hmmm..) can also have PCI buses...
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pcivar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h index 225907936fa..445da365b36 100644 --- a/sys/dev/pci/pcivar.h +++ b/sys/dev/pci/pcivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcivar.h,v 1.10 1997/01/24 19:34:16 niklas Exp $ */ +/* $OpenBSD: pcivar.h,v 1.11 1997/03/12 19:52:56 pefo Exp $ */ /* $NetBSD: pcivar.h,v 1.18 1996/12/01 21:02:18 leo Exp $ */ /* @@ -54,7 +54,7 @@ struct pcibus_attach_args; /* * Machine-dependent definitions. */ -#if (alpha + atari + i386 != 1) +#if (alpha + atari + i386 + arc != 1) ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #endif #if alpha @@ -66,6 +66,9 @@ ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #if i386 #include <i386/pci/pci_machdep.h> #endif +#if arc +#include <arc/pci/pci_machdep.h> +#endif /* * PCI bus attach arguments. |