diff options
author | Nishanth Menon <nm@ti.com> | 2011-06-15 11:02:25 -0500 |
---|---|---|
committer | Suman Anna <s-anna@ti.com> | 2011-06-15 21:55:53 -0500 |
commit | aec3ccba594b8f55a0c69ef06c336c5afa6125dc (patch) | |
tree | defefb3f81a8b6408bbc067a628e1d1ecb7dd626 | |
parent | 9fef42e88a100659843244b3d18f5021217912dc (diff) | |
download | kernel_samsung_espresso10-aec3ccba594b8f55a0c69ef06c336c5afa6125dc.zip kernel_samsung_espresso10-aec3ccba594b8f55a0c69ef06c336c5afa6125dc.tar.gz kernel_samsung_espresso10-aec3ccba594b8f55a0c69ef06c336c5afa6125dc.tar.bz2 |
rpmsg: build only if TI TILER is present
rpmsg_omx driver will eventually use ION, till then,
it depends on TI_TILER being configured in the system.
This fixes the build error:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
drivers/built-in.o: In function `_rpmsg_omx_map_buf':
drivers/rpmsg/rpmsg_omx.c:108: undefined reference to `tiler_virt2phys'
drivers/rpmsg/rpmsg_omx.c:117: undefined reference to `tiler_virt2phys'
make: *** [.tmp_vmlinux1] Error 1
Change-Id: I3a5f4aaa59714476a2f7902a2f216dd1e8a58af3
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Suman Anna <s-anna@ti.com>
-rw-r--r-- | drivers/rpmsg/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rpmsg/Kconfig b/drivers/rpmsg/Kconfig index 257408e..dfeeabf 100644 --- a/drivers/rpmsg/Kconfig +++ b/drivers/rpmsg/Kconfig @@ -19,6 +19,7 @@ config RPMSG_OMX tristate "rpmsg OMX driver" default y depends on RPMSG + depends on TI_TILER ---help--- An rpmsg driver that exposes OMX API to user space, in order to allow multimedia applications to offload OMX processing to |