vdpa-sim: depend on HAS_DMA
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 5 Apr 2020 08:11:29 +0000 (04:11 -0400)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 16 Apr 2020 22:31:01 +0000 (18:31 -0400)
commit355b36e6bfd35bd4f4f28f182bb2f8bc07295c88
tree1030e6e953f7fb93503e9a8e8b85954a1f4ac81b
parent8f3d9f354286745c751374f5f1fcafee6b3f3136
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 <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vdpa/Kconfig