powerpc/mm: Use PFN_PHYS() in devmem_is_allowed()
This function can run on systems where physical addresses don't fit in unsigned long, so make sure to use the macro that contains the proper cast. Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
parent
86c3b16e9f
commit
6c0cc62715
1 changed files with 1 additions and 1 deletions
|
@ -560,7 +560,7 @@ subsys_initcall(add_system_ram_resources);
|
||||||
*/
|
*/
|
||||||
int devmem_is_allowed(unsigned long pfn)
|
int devmem_is_allowed(unsigned long pfn)
|
||||||
{
|
{
|
||||||
if (iomem_is_exclusive(pfn << PAGE_SHIFT))
|
if (iomem_is_exclusive(PFN_PHYS(pfn)))
|
||||||
return 0;
|
return 0;
|
||||||
if (!page_is_ram(pfn))
|
if (!page_is_ram(pfn))
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue