Tue Sep 29 23:54:36 2009 UTC ()
Pull up following revision(s) (requested by bouyer in ticket #1040):
	sys/arch/x86/include/bus.h: revision 1.19
Change bus_size_t from paddr_t to size_t. It doens't make sense to have
a 64bit bus_size_t on i386 as the address space is 32bits anyway.
With a 64bit bus_size_t we need a different bus_space.S for PAE and non-PAE.


(snj)
diff -r1.16.10.1 -r1.16.10.2 src/sys/arch/x86/include/bus.h

cvs diff -r1.16.10.1 -r1.16.10.2 src/sys/arch/x86/include/Attic/bus.h (expand / switch to context diff)
--- src/sys/arch/x86/include/Attic/bus.h 2009/09/29 23:53:14 1.16.10.1
+++ src/sys/arch/x86/include/Attic/bus.h 2009/09/29 23:54:36 1.16.10.2
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus.h,v 1.16.10.1 2009/09/29 23:53:14 snj Exp $	*/
+/*	$NetBSD: bus.h,v 1.16.10.2 2009/09/29 23:54:36 snj Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2001 The NetBSD Foundation, Inc.
@@ -78,7 +78,7 @@
  * Bus address and size types
  */
 typedef paddr_t bus_addr_t;
-typedef paddr_t bus_size_t;
+typedef size_t bus_size_t;
 
 typedef	int bus_space_tag_t;
 typedef	vaddr_t bus_space_handle_t;