diff options
author | Suman Anna <s-anna@ti.com> | 2011-05-24 20:41:10 -0500 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:05:24 -0700 |
commit | 1e9936beeb420abf35a0dc0d2c58305ce8f64b20 (patch) | |
tree | 93bfe729f0802096c22c3da798c14d1279df7e9a | |
parent | 5db03197301cffb8d6188986500b86c9d9a13d5b (diff) | |
download | kernel_samsung_espresso10-1e9936beeb420abf35a0dc0d2c58305ce8f64b20.zip kernel_samsung_espresso10-1e9936beeb420abf35a0dc0d2c58305ce8f64b20.tar.gz kernel_samsung_espresso10-1e9936beeb420abf35a0dc0d2c58305ce8f64b20.tar.bz2 |
omap4: Kconfig: select ipc/omx modules by default
This patch enables the required IPC and OMX modules by default
so that application developers need not select these.
Signed-off-by: Suman Anna <s-anna@ti.com>
-rw-r--r-- | arch/arm/plat-omap/Kconfig | 1 | ||||
-rw-r--r-- | drivers/rpmsg/Kconfig | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/Kconfig b/arch/arm/plat-omap/Kconfig index 06b534f..ac25b91 100644 --- a/arch/arm/plat-omap/Kconfig +++ b/arch/arm/plat-omap/Kconfig @@ -41,6 +41,7 @@ config OMAP_DEBUG_LEDS config OMAP_RPMSG tristate "OMAP Virtio-based remote processor messaging support" depends on ARCH_OMAP4 + default y select VIRTIO select VIRTIO_RING select OMAP_MBOX_FWK diff --git a/drivers/rpmsg/Kconfig b/drivers/rpmsg/Kconfig index bc633e4..257408e 100644 --- a/drivers/rpmsg/Kconfig +++ b/drivers/rpmsg/Kconfig @@ -1,5 +1,6 @@ config RPMSG tristate "Virtio-based remote processor messaging bus" + default y select VIRTIO select VIRTIO_RING depends on OMAP_RPMSG @@ -16,6 +17,7 @@ config RPMSG config RPMSG_OMX tristate "rpmsg OMX driver" + default y depends on RPMSG ---help--- An rpmsg driver that exposes OMX API to user space, in order to @@ -26,6 +28,7 @@ config RPMSG_OMX config RPMSG_CLIENT_SAMPLE tristate "An rpmsg client sample" + default m depends on RPMSG ---help--- This is just a sample client driver for the rpmsg bus. @@ -33,6 +36,7 @@ config RPMSG_CLIENT_SAMPLE config RPMSG_SERVER_SAMPLE tristate "An rpmsg server sample" + default m depends on RPMSG ---help--- This is just a sample server driver for the rpmsg bus. |