diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:39 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:39 +0200 |
commit | 88f57e093114a44aa9a858d52b099bcc52034a8c (patch) | |
tree | 3d20c7aa00c33aa628669535abbf202809d8bb2a /drivers/dma/MCD_dmaApi.c | |
parent | 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7 (diff) | |
download | u-boot-imx-88f57e093114a44aa9a858d52b099bcc52034a8c.zip u-boot-imx-88f57e093114a44aa9a858d52b099bcc52034a8c.tar.gz u-boot-imx-88f57e093114a44aa9a858d52b099bcc52034a8c.tar.bz2 |
drivers/dma: Move conditional compilation to Makefile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/dma/MCD_dmaApi.c')
-rw-r--r-- | drivers/dma/MCD_dmaApi.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/dma/MCD_dmaApi.c b/drivers/dma/MCD_dmaApi.c index b0062b7..5c95651 100644 --- a/drivers/dma/MCD_dmaApi.c +++ b/drivers/dma/MCD_dmaApi.c @@ -24,8 +24,6 @@ #include <common.h> -#ifdef CONFIG_FSLDMAFEC - #include <MCD_dma.h> #include <MCD_tasksInit.h> #include <MCD_progCheck.h> @@ -1023,4 +1021,3 @@ static void MCD_memcpy(int *dest, int *src, u32 size) for (i = 0; i < size; i += sizeof(int), dest++, src++) *dest = *src; } -#endif /* CONFIG_FSLDMAFEC */ |