Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Apr 2003 19:32:25 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 28148 for review
Message-ID:  <200304050332.h353WPBk099790@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=28148

Change 28148 by peter@peter_overcee on 2003/04/04 19:31:34

	use 64 bit typenames, use 64 bit size (jake)

Affected files ...

.. //depot/projects/hammer/sys/x86_64/include/bus_at386.h#5 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/include/bus_at386.h#5 (text+ko) ====

@@ -93,7 +93,7 @@
  * Bus address and size types
  */
 typedef uint64_t bus_addr_t;
-typedef uint32_t bus_size_t;
+typedef uint64_t bus_size_t;
 
 #define BUS_SPACE_MAXSIZE_24BIT	0xFFFFFF
 #define BUS_SPACE_MAXSIZE_32BIT 0xFFFFFFFF
@@ -107,8 +107,8 @@
 /*
  * Access methods for bus resources and address space.
  */
-typedef	u_long bus_space_tag_t;
-typedef	u_long bus_space_handle_t;
+typedef	uint64_t bus_space_tag_t;
+typedef	uint64_t bus_space_handle_t;
 
 /*
  * Map a region of device bus space into CPU virtual address space.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304050332.h353WPBk099790>