aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjm@sportsman.spdomain <djm@sportsman.spdomain>2005-06-09 22:13:12 +0000
committerdjm@sportsman.spdomain <djm@sportsman.spdomain>2005-06-09 22:13:12 +0000
commitb98e97c40e4917bacf48410625abb78a91cc2b17 (patch)
tree1e4e659fe90b6b44a903bad84ef9f253857cf178
parent03ab2e2693f31d8679ec91c599f622536162f8f4 (diff)
downloadxen-b98e97c40e4917bacf48410625abb78a91cc2b17.tar.gz
xen-b98e97c40e4917bacf48410625abb78a91cc2b17.tar.bz2
xen-b98e97c40e4917bacf48410625abb78a91cc2b17.zip
bitkeeper revision 1.1707 (42a8bef84ufqr4dGKMyBtJRUb9pcOQ)
Accomodate recent addition of physaddr_t type
-rw-r--r--xen/include/asm-ia64/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/xen/include/asm-ia64/config.h b/xen/include/asm-ia64/config.h
index 1052e595ac..442d49a382 100644
--- a/xen/include/asm-ia64/config.h
+++ b/xen/include/asm-ia64/config.h
@@ -27,6 +27,8 @@
// needed by include/asm-ia64/processor.h (and other places)
typedef int pid_t;
+// now needed for xen/include/mm.h
+typedef unsigned long physaddr_t;
// from include/linux/kernel.h
#define ALIGN(x,a) (((x)+(a)-1)&~((a)-1))