GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / x86 / include / asm / types.h
blobdf1da20f453476635f8dd244cd690451c39b4c13
1 #ifndef _ASM_X86_TYPES_H
2 #define _ASM_X86_TYPES_H
4 #define dma_addr_t dma_addr_t
6 #include <asm-generic/types.h>
8 #ifdef __KERNEL__
9 #ifndef __ASSEMBLY__
11 typedef u64 dma64_addr_t;
12 #if defined(CONFIG_X86_64) || defined(CONFIG_HIGHMEM64G)
13 /* DMA addresses come in 32-bit and 64-bit flavours. */
14 typedef u64 dma_addr_t;
15 #else
16 typedef u32 dma_addr_t;
17 #endif
19 #endif /* __ASSEMBLY__ */
20 #endif /* __KERNEL__ */
22 #endif /* _ASM_X86_TYPES_H */