From: Ohad Ben-Cohen Date: Sat, 6 Oct 2012 09:35:57 +0000 (+0200) Subject: remoteproc: fix (again) the virtio-related build breakage X-Git-Tag: next-20121008~13^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ed26d190a3e7718a6b8a4f844e963b408f54ce32;p=karo-tx-linux.git remoteproc: fix (again) the virtio-related build breakage Another virtio dependency was overlooked, so add it to fix the below build breakage. This time for real. ERROR: "vring_del_virtqueue" [drivers/remoteproc/remoteproc.ko] undefined! ERROR: "register_virtio_device" [drivers/remoteproc/remoteproc.ko] undefined! ERROR: "unregister_virtio_device" [drivers/remoteproc/remoteproc.ko] undefined! ERROR: "vring_new_virtqueue" [drivers/remoteproc/remoteproc.ko] undefined! ERROR: "vring_interrupt" [drivers/remoteproc/remoteproc.ko] undefined! ERROR: "vring_transport_features" [drivers/remoteproc/remoteproc.ko] undefined! Cc: stable@vger.kernel.org Reported-by: Fengguang Wu Signed-off-by: Ohad Ben-Cohen --- diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index 96ce101b9067..209a4a2e5ef0 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -7,6 +7,7 @@ config REMOTEPROC depends on HAS_DMA select FW_CONFIG select VIRTIO + select VIRTIO_RING config OMAP_REMOTEPROC tristate "OMAP remoteproc support"