summaryrefslogtreecommitdiffstats
path: root/include/asm-i386
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-03-27 11:46:38 -0500
committerWolfgang Denk <wd@denx.de>2008-04-13 17:13:46 -0700
commite99ccb488181d012248c6be30b2093e950319fc5 (patch)
tree3c9fefb4d458a349912aeb2ff548088a21101600 /include/asm-i386
parent20a14a42a25f72e379f38460b8a8484667536795 (diff)
downloadblackbird-obmc-uboot-e99ccb488181d012248c6be30b2093e950319fc5.tar.gz
blackbird-obmc-uboot-e99ccb488181d012248c6be30b2093e950319fc5.zip
Introduce phys_size_t and move phys_addr_t into asm/types.h
Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's that have larger physical addresses like 44x, 85xx, and 86xx. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r--include/asm-i386/io.h2
-rw-r--r--include/asm-i386/types.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/include/asm-i386/io.h b/include/asm-i386/io.h
index db4f442817..2c57140fb3 100644
--- a/include/asm-i386/io.h
+++ b/include/asm-i386/io.h
@@ -210,8 +210,6 @@ static inline void sync(void)
* that can be used to access the memory range with the caching
* properties specified by "flags".
*/
-typedef unsigned long phys_addr_t;
-
#define MAP_NOCACHE (0)
#define MAP_WRCOMBINE (0)
#define MAP_WRBACK (0)
diff --git a/include/asm-i386/types.h b/include/asm-i386/types.h
index bdbde4172a..9a40e383eb 100644
--- a/include/asm-i386/types.h
+++ b/include/asm-i386/types.h
@@ -45,6 +45,9 @@ typedef unsigned long long u64;
typedef u32 dma_addr_t;
+typedef unsigned long phys_addr_t;
+typedef unsigned long phys_size_t;
+
#endif /* __KERNEL__ */
#endif
OpenPOWER on IntegriCloud