Skip to content

Commit

Permalink
[PATCH] ppc64: Consolidate some macros
Browse files Browse the repository at this point in the history
The only caller of chunk_offset() and abs_chunk() is phys_to_abs(), so
fold the former two into the latter.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Aug 29, 2005
1 parent 56e97b7 commit ce21795
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions include/asm-ppc64/abs_addr.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,24 +44,17 @@ static inline unsigned long addr_to_chunk(unsigned long addr)
return addr >> MSCHUNKS_CHUNK_SHIFT;
}

static inline unsigned long chunk_offset(unsigned long addr)
static inline unsigned long phys_to_abs(unsigned long pa)
{
return addr & MSCHUNKS_OFFSET_MASK;
}
unsigned long chunk;

static inline unsigned long abs_chunk(unsigned long pchunk)
{
if (pchunk >= mschunks_map.num_chunks)
return pchunk;
chunk = addr_to_chunk(pa);

return mschunks_map.mapping[pchunk];
}
if (chunk < mschunks_map.num_chunks)
chunk = mschunks_map.mapping[chunk];

/* A macro so it can take pointers or unsigned long. */
#define phys_to_abs(pa) \
({ unsigned long _pa = (unsigned long)(pa); \
chunk_to_addr(abs_chunk(addr_to_chunk(_pa))) + chunk_offset(_pa); \
})
return chunk_to_addr(chunk) + (pa & MSCHUNKS_OFFSET_MASK);
}

static inline unsigned long
physRpn_to_absRpn(unsigned long rpn)
Expand Down

0 comments on commit ce21795

Please sign in to comment.