From: Michael S. Tsirkin Date: Sun, 5 Apr 2020 08:11:29 +0000 (-0400) Subject: vdpa-sim: depend on HAS_DMA X-Git-Tag: v5.10.7~2754^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=355b36e6bfd35bd4f4f28f182bb2f8bc07295c88;p=platform%2Fkernel%2Flinux-rpi.git vdpa-sim: depend on HAS_DMA set_dma_ops isn't available on all architectures: make ARCH=um ... drivers/vdpa/vdpa_sim/vdpa_sim.c: In function 'vdpasim_create': >> drivers/vdpa/vdpa_sim/vdpa_sim.c:324:2: error: implicit declaration of function 'set_dma_ops'; did you mean 'set_groups'? +[-Werror=implicit-function-declaration] set_dma_ops(dev, &vdpasim_dma_ops); ^~~~~~~~~~~ set_groups Disable vdpa-sim on architectures where it isn't. Acked-by: Jason Wang Signed-off-by: Michael S. Tsirkin --- diff --git a/drivers/vdpa/Kconfig b/drivers/vdpa/Kconfig index 7db1460..42c32b7 100644 --- a/drivers/vdpa/Kconfig +++ b/drivers/vdpa/Kconfig @@ -14,7 +14,7 @@ if VDPA_MENU config VDPA_SIM tristate "vDPA device simulator" - depends on RUNTIME_TESTING_MENU + depends on RUNTIME_TESTING_MENU && HAS_DMA select VDPA select VHOST_RING default n