[PATCH] powerpc: Make virt_to_pfn() a static inline
Linus Walleij
linus.walleij at linaro.org
Tue Aug 15 17:42:42 AEST 2023
On Tue, Aug 15, 2023 at 9:30 AM Michael Ellerman <mpe at ellerman.id.au> wrote:
> Linus Walleij <linus.walleij at linaro.org> writes:
> > - return ((unsigned long)__va(pmd_val(pmd) & ~PMD_MASKED_BITS));
> > + return (const void *)((unsigned long)__va(pmd_val(pmd) & ~PMD_MASKED_BITS));
>
> This can also just be:
>
> return __va(pmd_val(pmd) & ~PMD_MASKED_BITS);
>
> I've squashed that in.
Oh you applied it, then I don't need to send revised versions, thanks Michael!
Yours,
Linus Walleij
More information about the Linuxppc-dev
mailing list