diff options
author | Robby Cai <R63905@freescale.com> | 2012-03-16 11:40:02 +0800 |
---|---|---|
committer | Robby Cai <R63905@freescale.com> | 2012-03-19 09:57:27 +0800 |
commit | 37ce829985b338d3bd31a641f8d9242a1ce4a354 (patch) | |
tree | be398abd99ede8ef92e46b76ae7004965a949eae /drivers | |
parent | 3106c3c5f7ab76fa7f396ff98c8903039cab4678 (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')
-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 89d1b01d9af9..fb0f8083b14d 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 |