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 | |
| parent | 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7 (diff) | |
| download | olio-uboot-2014.01-88f57e093114a44aa9a858d52b099bcc52034a8c.tar.xz olio-uboot-2014.01-88f57e093114a44aa9a858d52b099bcc52034a8c.zip | |
drivers/dma: Move conditional compilation to Makefile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| -rw-r--r-- | drivers/dma/MCD_dmaApi.c | 3 | ||||
| -rw-r--r-- | drivers/dma/MCD_tasks.c | 4 | ||||
| -rw-r--r-- | drivers/dma/MCD_tasksInit.c | 4 | ||||
| -rw-r--r-- | drivers/dma/Makefile | 2 | 
4 files changed, 1 insertions, 12 deletions
| diff --git a/drivers/dma/MCD_dmaApi.c b/drivers/dma/MCD_dmaApi.c index b0062b773..5c95651d5 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 */ diff --git a/drivers/dma/MCD_tasks.c b/drivers/dma/MCD_tasks.c index 06a2d5326..4f6e34626 100644 --- a/drivers/dma/MCD_tasks.c +++ b/drivers/dma/MCD_tasks.c @@ -24,8 +24,6 @@  #include <common.h> -#ifdef CONFIG_FSLDMAFEC -  #include <MCD_dma.h>  u32 MCD_varTab0[]; @@ -2430,5 +2428,3 @@ u32 MCD_ENetXmit_TDT[] = {  #ifdef MCD_INCLUDE_EU  MCD_bufDesc MCD_singleBufDescs[NCHANNELS];  #endif - -#endif                          /* CONFIG_FSLDMAFEC */ diff --git a/drivers/dma/MCD_tasksInit.c b/drivers/dma/MCD_tasksInit.c index cf567db5a..2f198754e 100644 --- a/drivers/dma/MCD_tasksInit.c +++ b/drivers/dma/MCD_tasksInit.c @@ -28,8 +28,6 @@   * Do not edit!   */ -#ifdef CONFIG_FSLDMAFEC -  #include <MCD_dma.h>  extern dmaRegs *MCD_dmaBar; @@ -242,5 +240,3 @@ void MCD_startDmaENetXmit(char *bDBase, char *currBD, char *xmitFifoPtr,  	/* Set the task's Enable bit in its Task Control Register */  	MCD_dmaBar->taskControl[channel] |= (u16) 0x8000;  } - -#endif			/* CONFIG_FSLDMAFEC */ diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index 7e17360de..cf29efa02 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk  LIB	:= $(obj)libdma.a -COBJS-y += MCD_tasksInit.o MCD_dmaApi.o MCD_tasks.o +COBJS-$(CONFIG_FSLDMAFEC) += MCD_tasksInit.o MCD_dmaApi.o MCD_tasks.o  COBJS	:= $(COBJS-y)  SRCS	:= $(COBJS:.o=.c) |