diff options
author | Thiemo Seufer <ths@networkno.de> | 2005-04-11 14:24:16 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 20:31:03 +0200 |
commit | ac5d8c022f91d790888cc8c627b8010d3c31a300 (patch) | |
tree | df575caf4a8020150b8d1be11c41327f888edcf4 /include/asm-mips/pgtable.h | |
parent | Detect the 4KEcR2 and for now detect handle it like the 4KEc. (diff) | |
download | linux-ac5d8c022f91d790888cc8c627b8010d3c31a300.tar.xz linux-ac5d8c022f91d790888cc8c627b8010d3c31a300.zip |
Use fixed up pfn.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/pgtable.h')
-rw-r--r-- | include/asm-mips/pgtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/pgtable.h b/include/asm-mips/pgtable.h index 34d06fe7caac..754ec6c5a8f7 100644 --- a/include/asm-mips/pgtable.h +++ b/include/asm-mips/pgtable.h @@ -372,7 +372,7 @@ static inline int io_remap_pfn_range(struct vm_area_struct *vma, pgprot_t prot) { phys_t phys_addr_high = fixup_bigphys_addr(pfn << PAGE_SHIFT, size); - return remap_pfn_range(vma, vaddr, pfn, size, prot); + return remap_pfn_range(vma, vaddr, phys_addr_high >> PAGE_SHIFT, size, prot); } #else #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \ |