diff options
author | Robby Cai <R63905@freescale.com> | 2012-03-16 11:40:02 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:24:07 +0800 |
commit | 17d1dd1e18da6200a5062d7d586458b6140d36a3 (patch) | |
tree | f46a7aac8a0b45eaf3f22e14a038bcc6d2e64f00 /drivers/dma | |
parent | 59143c85ef03b527af6cd04cef0ef6d58a94927e (diff) |
ENGR00177046: Add the platform dependency for PXP in Kconfig
If there's no dependency, build will be broken when do
`make ARCH=arm CROSS_COMPILE=<cross-compiler path> allmodconfig'
`make'
because PXP module will be turned on. This patch fixed it.
Signed-off-by: Robby Cai <R63905@freescale.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 7d6b9000e6a6..fda11931eef4 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -143,10 +143,12 @@ config MX3_IPU_IRQS config MXC_PXP bool "MXC PxP support" + depends on ARCH_MX50 select DMA_ENGINE config MXC_PXP_V2 bool "MXC PxP V2 support" + depends on ARCH_MX6 select DMA_ENGINE config MXC_PXP_CLIENT_DEVICE |