diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-08-25 07:42:30 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1998-08-25 07:42:30 +0000 |
commit | 935514c32096253ef3a75a8c01d0cadeb24e6e4c (patch) | |
tree | f282e249298c83aa3f32efad7d1dac8ac141a386 /sys | |
parent | ce44493e0793c13543692f1d2ef8ba4f97ba62f3 (diff) |
Cleanup
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/include/autoconf.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/powerpc/include/autoconf.h b/sys/arch/powerpc/include/autoconf.h index 8502deed616..09d5fe6fdf0 100644 --- a/sys/arch/powerpc/include/autoconf.h +++ b/sys/arch/powerpc/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.3 1998/08/22 18:31:44 rahnds Exp $ */ +/* $OpenBSD: autoconf.h,v 1.4 1998/08/25 07:42:29 pefo Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -65,7 +65,8 @@ typedef struct bushook { #define BUS_MAIN 1 /* mainbus */ #define BUS_ISABR 2 /* ISA Bridge Bus */ -#define BUS_PCIBR 3 /* Algorithmics PCI bridge */ +#define BUS_PCIBR 3 /* PCI bridge */ +#define BUS_VMEBR 4 /* VME bridge */ #define BUS_INTR_ESTABLISH(ca, handler, val) \ (*(ca)->ca_bus->bh_intr_establish)((ca), (handler), (val)) @@ -83,6 +84,6 @@ struct confargs { void set_clockintr __P((void (*)(struct clockframe *))); void set_iointr __P((void (*)(void *, int))); -int badaddr __P((void *, u_int64_t)); +int badaddr __P((void *, u_int32_t)); #endif /* _MACHINE_AUTOCONF_H_ */ |