]> git.ipfire.org Git - thirdparty/linux.git/commit
tee: Pass a pointer to virt_to_page()
authorLinus Walleij <linus.walleij@linaro.org>
Fri, 24 Mar 2023 10:15:31 +0000 (11:15 +0100)
committerJens Wiklander <jens.wiklander@linaro.org>
Thu, 30 Mar 2023 06:34:52 +0000 (08:34 +0200)
commit8671133082176d1388e20ac33d61cf7e3b05adf5
treefec795e6513a15a007c5f608cd312955668be2a5
parenteeac8ede17557680855031c6f305ece2378af326
tee: Pass a pointer to virt_to_page()

Like the other calls in this function virt_to_page() expects
a pointer, not an integer.

However since many architectures implement virt_to_pfn() as
a macro, this function becomes polymorphic and accepts both a
(unsigned long) and a (void *).

Fix this up with an explicit cast.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
drivers/tee/tee_shm.c