lib: fix build failure in CONFIG_DEBUG_VIRTUAL test
authorChristophe Leroy <christophe.leroy@c-s.fr>
Mon, 10 Dec 2018 08:08:28 +0000 (08:08 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Jan 2019 09:01:07 +0000 (10:01 +0100)
commitff420ff182322f5f81925a0de7081b28a0c2d5af
tree71f7980f7afc53c5ef15e0c8f24cdcd807a917dd
parent8936b67c81e14e7f8a63f3ebd3e3a29c1dddfed8
lib: fix build failure in CONFIG_DEBUG_VIRTUAL test

commit 10fdf838e5f540beca466e9d1325999c072e5d3f upstream.

On several arches, virt_to_phys() is in io.h

Build fails without it:

  CC      lib/test_debug_virtual.o
lib/test_debug_virtual.c: In function 'test_debug_virtual_init':
lib/test_debug_virtual.c:26:7: error: implicit declaration of function 'virt_to_phys' [-Werror=implicit-function-declaration]
  pa = virt_to_phys(va);
       ^

Fixes: e4dace361552 ("lib: add test module for CONFIG_DEBUG_VIRTUAL")
CC: stable@vger.kernel.org
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
lib/test_debug_virtual.c