AVR32DEV1: Rename files for better conformance to naming conventions
This commit is contained in:
parent
70b576b638
commit
08e8f45b08
|
@ -38,12 +38,12 @@
|
|||
CFLAGS += -I$(TOPDIR)/sched
|
||||
|
||||
ASRCS =
|
||||
CSRCS = up_boot.c
|
||||
CSRCS = avr32_boot.c
|
||||
ifeq ($(CONFIG_ARCH_LEDS),y)
|
||||
CSRCS += up_leds.c
|
||||
CSRCS += avr32_leds.c
|
||||
endif
|
||||
ifeq ($(CONFIG_ARCH_BUTTONS),y)
|
||||
CSRCS += up_buttons.c
|
||||
CSRCS += avr32_buttons.c
|
||||
endif
|
||||
|
||||
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/************************************************************************************
|
||||
* configs/avr32dev1/src/up_boot.c
|
||||
* configs/avr32dev1/src/avr32_boot.c
|
||||
*
|
||||
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* configs/sam3u-ek/src/up_leds.c
|
||||
* configs/avr32dev1/src/avr32_buttons.c
|
||||
*
|
||||
* Copyright (C) 2010-2011, 2014-2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* configs/avr32dev1/src/up_leds.c
|
||||
* configs/avr32dev1/src/avr32_leds.c
|
||||
*
|
||||
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
@ -1,6 +1,5 @@
|
|||
/************************************************************************************
|
||||
* configs/avr32dev1/src/avr32dev1_internal.h
|
||||
* arch/avr/src/board/avr32dev1_internal.n
|
||||
*
|
||||
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
@ -46,7 +45,7 @@
|
|||
#include "at32uc3_config.h"
|
||||
|
||||
/************************************************************************************
|
||||
* Definitions
|
||||
* Pre-processor Definitions
|
||||
************************************************************************************/
|
||||
|
||||
/* Configuration ********************************************************************/
|
||||
|
@ -113,4 +112,3 @@
|
|||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
#endif /* _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H */
|
||||
|
||||
|
|
Loading…
Reference in New Issue