LM3S8962-EK: Rename files for better conformance to naming conventions

This commit is contained in:
Gregory Nutt
2015-03-21 11:01:59 -06:00
parent 7eb27e5f37
commit 30c5c7a95a
8 changed files with 25 additions and 30 deletions
+3 -3
View File
@@ -39,12 +39,12 @@ CFLAGS += -I$(TOPDIR)/sched
ASRCS = ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT)) AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_leds.c up_ethernet.c up_ssi.c CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
ifeq ($(CONFIG_NSH_ARCHINIT),y) ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += up_nsh.c CSRCS += lm_nsh.c
endif endif
ifeq ($(CONFIG_NX_LCDDRIVER),y) ifeq ($(CONFIG_NX_LCDDRIVER),y)
CSRCS += up_oled.c CSRCS += lm_oled.c
endif endif
COBJS = $(CSRCS:.c=$(OBJEXT)) COBJS = $(CSRCS:.c=$(OBJEXT))
@@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/lm3s8962-ek/src/lm3s8962ek_internal.h * configs/lm3s8962-ek/src/lm3s8962ek_internal.h
* arch/arm/src/board/lm3s8962ek_internal.n
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -48,7 +47,7 @@
#include "tiva_gpio.h" #include "tiva_gpio.h"
/************************************************************************************ /************************************************************************************
* Definitions * Pre-processor Definitions
************************************************************************************/ ************************************************************************************/
/* How many SSI modules does this chip support? The LM3S8962 supports 1 SSI /* How many SSI modules does this chip support? The LM3S8962 supports 1 SSI
@@ -1,5 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/lm3s8962-ek/src/up_boot.c * configs/lm3s8962-ek/src/lm_boot.c
* *
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/lm3s8962-ek/src/up_ethernet.c * configs/lm3s8962-ek/src/lm_ethernet.c
* arch/arm/src/board/up_ethernet.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/lm3s8962-ek/src/up_leds.c * configs/lm3s8962-ek/src/lm_leds.c
* *
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -52,7 +52,7 @@
#include "lm3s8962ek_internal.h" #include "lm3s8962ek_internal.h"
/**************************************************************************** /****************************************************************************
* Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG /* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG
@@ -1,6 +1,5 @@
/**************************************************************************** /****************************************************************************
* config/lm3s8962-ek/src/up_nsh.c * config/lm3s8962-ek/src/lm_nsh.c
* arch/arm/src/board/up_nsh.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -48,7 +47,7 @@
#include <nuttx/mmcsd.h> #include <nuttx/mmcsd.h>
/**************************************************************************** /****************************************************************************
* Pre-Processor Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* Configuration ************************************************************/ /* Configuration ************************************************************/
@@ -1,6 +1,5 @@
/**************************************************************************** /****************************************************************************
* config/lm3s8962-ek/src/up_oled.c * config/lm3s8962-ek/src/lm_oled.c
* arch/arm/src/board/up_oled.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -52,7 +51,7 @@
#include "lm3s8962ek_internal.h" #include "lm3s8962ek_internal.h"
/**************************************************************************** /****************************************************************************
* Pre-Processor Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* Define the CONFIG_LCD_RITDEBUG to enable detailed debug output (stuff you /* Define the CONFIG_LCD_RITDEBUG to enable detailed debug output (stuff you
@@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/lm3s8962-ek/src/up_ssi.c * configs/lm3s8962-ek/src/lm_ssi.c
* arch/arm/src/board/up_ssi.c
* *
* Copyright (C) 2010 Gregory Nutt. All rights reserved. * Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@@ -57,7 +56,7 @@
#if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */ #if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */
/************************************************************************************ /************************************************************************************
* Definitions * Pre-processor Definitions
************************************************************************************/ ************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */ /* Enables debug output from this file (needs CONFIG_DEBUG too) */