diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-10 15:20:18 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-10 15:20:18 +0000 |
commit | 2da9b20fdb43a825b5c1b99f3d73e13ff88ebe87 (patch) | |
tree | b9678b6eb87e77af08fbbede5965f2079d42fd8b /sys/arch/powerpc/include/bus.h | |
parent | 05848b74115fce1a382958504ef55f5d6fa1e4c5 (diff) |
Post pmap_extract() changes cleanup.
bus_addr_t vs vaddr_t/paddr_t
Return correct value for poalloc();
Diffstat (limited to 'sys/arch/powerpc/include/bus.h')
-rw-r--r-- | sys/arch/powerpc/include/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/bus.h b/sys/arch/powerpc/include/bus.h index 180a4b5742c..540c07fe24b 100644 --- a/sys/arch/powerpc/include/bus.h +++ b/sys/arch/powerpc/include/bus.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bus.h,v 1.11 2001/03/29 18:50:11 drahn Exp $ */ +/* $OpenBSD: bus.h,v 1.12 2001/06/10 15:20:16 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom. All rights reserved. @@ -47,7 +47,7 @@ /* * Bus access types. */ -typedef u_int32_t bus_addr_t; +typedef u_long bus_addr_t; typedef u_int32_t bus_size_t; typedef u_int32_t bus_space_handle_t; typedef struct ppc_bus_space *bus_space_tag_t; |