diff options
author | Andrew Morton <[email protected]> | 2019-07-11 20:54:21 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2019-07-12 11:05:42 -0700 |
commit | 2236b99d6a33df72befa7205c2d8381aca7ae701 (patch) | |
tree | 7f40879720e46b9d52591dcdf8bfe398945f647a | |
parent | 0d4ca4c9bab397b525c9a4f875d31410ce4bc738 (diff) |
include/linux/pfn_t.h: remove pfn_t_to_virt()
It has no callers and there is no virt_to_pfn_t().
Reported-by: Anshuman Khandual <[email protected]>
Cc: Dan Williams <[email protected]>
Cc: Jérôme Glisse <[email protected]>
Cc: Laurent Dufour <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/pfn_t.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/pfn_t.h b/include/linux/pfn_t.h index 3c202a11a79e..01e8037023f7 100644 --- a/include/linux/pfn_t.h +++ b/include/linux/pfn_t.h @@ -66,13 +66,6 @@ static inline phys_addr_t pfn_t_to_phys(pfn_t pfn) return PFN_PHYS(pfn_t_to_pfn(pfn)); } -static inline void *pfn_t_to_virt(pfn_t pfn) -{ - if (pfn_t_has_page(pfn) && !is_device_private_page(pfn_t_to_page(pfn))) - return __va(pfn_t_to_phys(pfn)); - return NULL; -} - static inline pfn_t page_to_pfn_t(struct page *page) { return pfn_to_pfn_t(page_to_pfn(page)); |