arm64: memory: Make virt_to_pfn() a static inline
authorLinus Walleij <linus.walleij@linaro.org>
Mon, 30 May 2022 08:46:39 +0000 (10:46 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 29 May 2023 09:27:08 +0000 (11:27 +0200)
commitc94b1a012f93327a4fe16ab9455331f37e69242f
tree43fd0b0d3a796580499089a55e4b66ed5a205863
parenta9ff6961601d9aa0c42b6eb7d850371f31b1f5e6
arm64: memory: Make virt_to_pfn() a static inline

Making virt_to_pfn() a static inline taking a strongly typed
(const void *) makes the contract of a passing a pointer of that
type to the function explicit and exposes any misuse of the
macro virt_to_pfn() acting polymorphic and accepting many types
such as (void *), (unitptr_t) or (unsigned long) as arguments
without warnings.

Since arm64 is using <asm-generic/memory_model.h> to provide
__phys_to_pfn() we need to move the inclusion of that header
up, so we can resolve the static inline at compile time.

Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
arch/arm64/include/asm/memory.h