Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc780af5 authored by Russell King's avatar Russell King
Browse files

ARM: kill pmd_off()



pmd_off() has only one user, so lets consolidate this into its only
user.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 1784b157
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -5,14 +5,9 @@ extern pmd_t *top_pmd;

#define TOP_PTE(x)	pte_offset_kernel(top_pmd, x)

static inline pmd_t *pmd_off(pgd_t *pgd, unsigned long virt)
{
	return pmd_offset(pud_offset(pgd, virt), virt);
}

static inline pmd_t *pmd_off_k(unsigned long virt)
{
	return pmd_off(pgd_offset_k(virt), virt);
	return pmd_offset(pud_offset(pgd_offset_k(virt), virt), virt);
}

struct mem_type {