Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91561
b: refs/heads/master
c: d04ceb3
h: refs/heads/master
i:
  91559: d919d1e
v: v3
  • Loading branch information
Kumar Gala authored and Paul Mackerras committed Apr 16, 2008
1 parent 3607f7e commit f124695
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4846c5deb9776a7306d0f656ade7505278ac39ba
refs/heads/master: d04ceb3fc294ea2c4f538a04343f3a473953a3b0
2 changes: 0 additions & 2 deletions trunk/include/asm-powerpc/mmu-40x.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@

#ifndef __ASSEMBLY__

typedef unsigned long phys_addr_t;

typedef struct {
unsigned long id;
unsigned long vdso_base;
Expand Down
2 changes: 0 additions & 2 deletions trunk/include/asm-powerpc/mmu-44x.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@

#ifndef __ASSEMBLY__

typedef unsigned long long phys_addr_t;

typedef struct {
unsigned long id;
unsigned long vdso_base;
Expand Down
2 changes: 0 additions & 2 deletions trunk/include/asm-powerpc/mmu-8xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@
#define SPRN_M_TW 799

#ifndef __ASSEMBLY__
typedef unsigned long phys_addr_t;

typedef struct {
unsigned long id;
unsigned long vdso_base;
Expand Down
6 changes: 0 additions & 6 deletions trunk/include/asm-powerpc/mmu-fsl-booke.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@

#ifndef __ASSEMBLY__

#ifndef CONFIG_PHYS_64BIT
typedef unsigned long phys_addr_t;
#else
typedef unsigned long long phys_addr_t;
#endif

typedef struct {
unsigned long id;
unsigned long vdso_base;
Expand Down
2 changes: 0 additions & 2 deletions trunk/include/asm-powerpc/mmu-hash32.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,6 @@ typedef struct {
unsigned long vdso_base;
} mm_context_t;

typedef unsigned long phys_addr_t;

#endif /* !__ASSEMBLY__ */

#endif /* _ASM_POWERPC_MMU_HASH32_H_ */
3 changes: 0 additions & 3 deletions trunk/include/asm-powerpc/mmu-hash64.h
Original file line number Diff line number Diff line change
Expand Up @@ -469,9 +469,6 @@ static inline unsigned long get_vsid(unsigned long context, unsigned long ea,
VSID_MODULUS_256M)
#define KERNEL_VSID(ea) VSID_SCRAMBLE(GET_ESID(ea))

/* Physical address used by some IO functions */
typedef unsigned long phys_addr_t;

#endif /* __ASSEMBLY__ */

#endif /* _ASM_POWERPC_MMU_HASH64_H_ */
7 changes: 7 additions & 0 deletions trunk/include/asm-powerpc/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ typedef unsigned long long u64;

typedef __vector128 vector128;

/* Physical address used by some IO functions */
#if defined(CONFIG_PPC64) || defined(CONFIG_PHYS_64BIT)
typedef u64 phys_addr_t;
#else
typedef u32 phys_addr_t;
#endif

#ifdef __powerpc64__
typedef u64 dma_addr_t;
#else
Expand Down

0 comments on commit f124695

Please sign in to comment.