mm/memblock.c: use PFN_PHYS()
Replace ((phys_addr_t)(x) << PAGE_SHIFT) by pfn macro. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
136199f0a6
commit
1676323030
1 changed files with 2 additions and 2 deletions
|
@ -1253,7 +1253,7 @@ phys_addr_t __init memblock_mem_size(unsigned long limit_pfn)
|
||||||
pages += end_pfn - start_pfn;
|
pages += end_pfn - start_pfn;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (phys_addr_t)pages << PAGE_SHIFT;
|
return PFN_PHYS(pages);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* lowest address */
|
/* lowest address */
|
||||||
|
@ -1324,7 +1324,7 @@ int __init_memblock memblock_search_pfn_nid(unsigned long pfn,
|
||||||
unsigned long *start_pfn, unsigned long *end_pfn)
|
unsigned long *start_pfn, unsigned long *end_pfn)
|
||||||
{
|
{
|
||||||
struct memblock_type *type = &memblock.memory;
|
struct memblock_type *type = &memblock.memory;
|
||||||
int mid = memblock_search(type, (phys_addr_t)pfn << PAGE_SHIFT);
|
int mid = memblock_search(type, PFN_PHYS(pfn));
|
||||||
|
|
||||||
if (mid == -1)
|
if (mid == -1)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue