EA3131: Rename files for better conformance to naming conventions

This commit is contained in:
Gregory Nutt 2015-03-21 14:12:58 -06:00
parent f7a89a2e57
commit e6471f8f24
12 changed files with 25 additions and 32 deletions

View File

@ -40,38 +40,38 @@ CFLAGS += -I$(TOPDIR)/sched
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_clkinit.c
CSRCS = lpc31_boot.c lpc31_clkinit.c
ifeq ($(CONFIG_ARCH_BUTTONS),y)
CSRCS += up_buttons.c
CSRCS += lpc31_buttons.c
endif
ifeq ($(CONFIG_LPC31_EXTDRAM),y)
CSRCS += up_mem.c
CSRCS += lpc31_mem.c
endif
ifeq ($(CONFIG_ARCH_LEDS),y)
CSRCS += up_leds.c
CSRCS += lpc31_leds.c
endif
ifeq ($(CONFIG_LPC31_SPI),y)
CSRCS += up_spi.c
CSRCS += lpc31_spi.c
endif
ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += up_nsh.c
CSRCS += lpc31_nsh.c
endif
ifeq ($(CONFIG_PAGING),y)
CSRCS += up_fillpage.c
CSRCS += lpc31_fillpage.c
endif
ifeq ($(CONFIG_LPC31_USBOTG),y)
ifeq ($(CONFIG_USBHOST),y)
CSRCS += up_usbhost.c
CSRCS += lpc31_usbhost.c
endif
ifeq ($(CONFIG_USBMSC),y)
CSRCS += up_usbmsc.c
CSRCS += lpc31_usbmsc.c
endif
endif

View File

@ -1,6 +1,5 @@
/************************************************************************************
* configs/ea3131/src/ea3131_internal.h
* arch/arm/src/board/ea3131_internal.n
*
* Copyright (C) 2009-2010,2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -48,7 +47,7 @@
#include "lpc31_ioconfig.h"
/************************************************************************************
* Definitions
* Pre-processor Definitions
************************************************************************************/
/* EA3131L GPIOs ********************************************************************/
@ -153,4 +152,3 @@ void weak_function lpc31_pginitialize(void);
#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_EA3131_SRC_EA3131_INTERNAL_H */

View File

@ -1,5 +1,5 @@
/************************************************************************************
* configs/ea3131/src/up_boot.c
* configs/ea3131/src/lpc31_boot.c
*
* Copyright (C) 2009, 2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/ea3131/src/up_leds.c
* configs/ea3131/src/lpc31_buttons.c
*
* Copyright (C) 2009-2010, 2014-2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/****************************************************************************
* configs/ea3131/src/up_clkinit.c
* arch/arm/src/board/up_clkinit.c
* configs/ea3131/src/lpc31_clkinit.c
*
* Copyright (C) 2009-2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -48,7 +47,7 @@
#include "lpc31_cgudrvr.h"
/****************************************************************************
* Definitions
* Pre-processor Definitions
****************************************************************************/
/* Sub-domain Clock Bitsets *************************************************/

View File

@ -1,6 +1,5 @@
/****************************************************************************
* configs/ea3131/src/up_fillpage.c
* arch/arm/src/board/up_fillpage.c
* configs/ea3131/src/lpc31_fillpage.c
*
* Copyright (C) 2010, 2012-2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -70,7 +69,7 @@
#endif
/****************************************************************************
* Definitions
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/ea3131/src/up_leds.c
* configs/ea3131/src/lpc31_leds.c
*
* Copyright (C) 2009-2010, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,6 @@
/****************************************************************************
* configs/ea3131/src/up_mem.c
* arch/arm/src/board/up_mem.c
* configs/ea3131/src/lpc31_mem.c
* arch/arm/src/board/lpc31_mem.c
*
* Copyright (C) 2009-2010,2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/****************************************************************************
* config/ea3131/src/up_nsh.c
* arch/arm/src/board/up_nsh.c
* config/ea3131/src/lpc31_nsh.c
*
* Copyright (C) 2009, 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -53,7 +52,7 @@
#include "lpc31_internal.h"
/****************************************************************************
* Pre-Processor Definitions
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/

View File

@ -1,6 +1,5 @@
/************************************************************************************
* configs/ea3131/src/up_spi.c
* arch/arm/src/board/up_spi.c
* configs/ea3131/src/lpc31_spi.c
*
* Copyright (C) 2009-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -139,4 +138,3 @@ uint8_t lpc31_spistatus(FAR struct spi_dev_s *dev, enum spi_dev_e devid)
#endif /* 0 */
#endif /* CONFIG_LPC31_SPI */

View File

@ -1,5 +1,5 @@
/************************************************************************************
* configs/ea3131/src/up_usbhost.c
* configs/ea3131/src/lpc31_usbhost.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/ea3131/src/up_usbmsc.c
* configs/ea3131/src/lpc31_usbmsc.c
*
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -52,7 +52,7 @@
#include <nuttx/fs/ramdisk.h>
/****************************************************************************
* Pre-Processor Definitions
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/