[3/4] Hexagon: apply page shift to PFN instead of VA in pfn_to_virt

Message ID 20240131060021.2749-1-yan.y.zhao@intel.com
State New
Headers
Series apply page shift to PFN instead of VA in pfn_to_virt |

Commit Message

Yan Zhao Jan. 31, 2024, 6 a.m. UTC
  Apply the page shift to PFN to get physical address for final VA.
The macro __va should take physical address instead of PFN as input.

Fixes: d6e81532b10d ("Hexagon: Make pfn accessors statics inlines")
Signed-off-by: Yan Zhao <yan.y.zhao@intel.com>
---
 arch/hexagon/include/asm/page.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/arch/hexagon/include/asm/page.h b/arch/hexagon/include/asm/page.h
index 10f1bc07423c..1d341590791a 100644
--- a/arch/hexagon/include/asm/page.h
+++ b/arch/hexagon/include/asm/page.h
@@ -135,7 +135,7 @@  static inline unsigned long virt_to_pfn(const void *kaddr)
 
 static inline void *pfn_to_virt(unsigned long pfn)
 {
-	return (void *)((unsigned long)__va(pfn) << PAGE_SHIFT);
+	return __va(pfn << PAGE_SHIFT);
 }