Skip to content

Commit

Permalink
Remove internal from name of all board header files
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-nutt committed Dec 29, 2015
1 parent a64ebf2 commit 6daa73a
Show file tree
Hide file tree
Showing 226 changed files with 338 additions and 339 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* configs/amber/src/amber-internal.h
* configs/amber/src/amber.h
*
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -33,8 +33,8 @@
*
****************************************************************************/

#ifndef __CONFIGS_AMBER_SRC_AMBER_INTERNAL_H
#define __CONFIGS_AMBER_SRC_AMBER_INTERNAL_H
#ifndef __CONFIGS_AMBER_SRC_AMBER_H
#define __CONFIGS_AMBER_SRC_AMBER_H

/****************************************************************************
* Included Files
Expand Down Expand Up @@ -99,4 +99,4 @@ void atmega_led_initialize(void);
#endif

#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_AMBER_SRC_AMBER_INTERNAL_H */
#endif /* __CONFIGS_AMBER_SRC_AMBER_H */
2 changes: 1 addition & 1 deletion configs/amber/src/atmega_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include "up_internal.h"

#include "atmega_internal.h"
#include "amber_internal.h"
#include "amber.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/arduino-mega2560/src/arduino_mega2560.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/****************************************************************************
* configs/arduino-mega2560/src/arduino-mega2560-internal.h
* configs/arduino-mega2560/src/arduino-mega2560.h
*
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down
2 changes: 1 addition & 1 deletion configs/avr32dev1/src/avr32_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#include "up_internal.h"

#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
#include "avr32dev1.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/avr32dev1/src/avr32_buttons.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include <arch/board/board.h>

#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
#include "avr32dev1.h"

#ifdef CONFIG_ARCH_BUTTONS

Expand Down
2 changes: 1 addition & 1 deletion configs/avr32dev1/src/avr32_leds.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include <nuttx/board.h>

#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
#include "avr32dev1.h"

#ifdef CONFIG_ARCH_LEDS

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/************************************************************************************
* configs/avr32dev1/src/avr32dev1_internal.h
* configs/avr32dev1/src/avr32dev1.h
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -33,8 +33,8 @@
*
************************************************************************************/

#ifndef _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H
#define _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H
#ifndef _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_H
#define _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_H

/************************************************************************************
* Included Files
Expand Down Expand Up @@ -111,4 +111,4 @@
************************************************************************************/

#endif /* __ASSEMBLY__ */
#endif /* _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H */
#endif /* _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_H */
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************************************
* configs/cloudctrl/src/cloudctrl-internal.h
* arch/arm/src/board/cloudctrl-internal.n
* configs/cloudctrl/src/cloudctrl.h
* arch/arm/src/board/cloudctrl.n
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -35,8 +35,8 @@
*
****************************************************************************************************/

#ifndef __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_INTERNAL_H
#define __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_INTERNAL_H
#ifndef __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_H
#define __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_H

/****************************************************************************************************
* Included Files
Expand Down Expand Up @@ -279,4 +279,4 @@ int stm32_w25initialize(int minor);
#endif

#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_INTERNAL_H */
#endif /* __CONFIGS_CLOUDCTRLL_SRC_CLOUDCTRL_H */
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include "up_arch.h"

#include "stm32_pwm.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#ifdef CONFIG_ADC

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_autoleds.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
#include "up_arch.h"
#include "up_internal.h"
#include "stm32.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

/****************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#include <arch/board/board.h>

#include "up_arch.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_buttons.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#include <nuttx/board.h>
#include <arch/board/board.h>

#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#ifdef CONFIG_ARCH_BUTTONS

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_nsh.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#include <nuttx/board.h>

#include "stm32.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

/****************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_phyinit.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#include "stm32_gpio.h"
#include "stm32_eth.h"

#include "cloudctrl-internal.h"
#include "cloudctrl.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_relays.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include <nuttx/arch.h>
#include <arch/board/board.h>

#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#ifdef CONFIG_ARCH_RELAYS

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#include "up_arch.h"
#include "chip.h"
#include "stm32.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#if defined(CONFIG_STM32_SPI1) || defined(CONFIG_STM32_SPI3)

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#include "up_arch.h"
#include "stm32.h"
#include "stm32_otgfs.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#ifdef CONFIG_STM32_OTGFS

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_userleds.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#include "up_arch.h"
#include "up_internal.h"
#include "stm32.h"
#include "cloudctrl-internal.h"
#include "cloudctrl.h"

#ifndef CONFIG_ARCH_LEDS

Expand Down
2 changes: 1 addition & 1 deletion configs/cloudctrl/src/stm32_w25.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# include <nuttx/fs/nxffs.h>
#endif

#include "cloudctrl-internal.h"
#include "cloudctrl.h"

/****************************************************************************
* Pre-processor Definitions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/************************************************************************************
* configs/ea3131/src/ea3131_internal.h
* configs/ea3131/src/ea3131.h
*
* Copyright (C) 2009-2010,2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -33,8 +33,8 @@
*
************************************************************************************/

#ifndef __CONFIGS_EA3131_SRC_EA3131_INTERNAL_H
#define __CONFIGS_EA3131_SRC_EA3131_INTERNAL_H
#ifndef __CONFIGS_EA3131_SRC_EA3131_H
#define __CONFIGS_EA3131_SRC_EA3131_H

/************************************************************************************
* Included Files
Expand Down Expand Up @@ -151,4 +151,4 @@ void weak_function lpc31_pginitialize(void);
#endif

#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_EA3131_SRC_EA3131_INTERNAL_H */
#endif /* __CONFIGS_EA3131_SRC_EA3131_H */
2 changes: 1 addition & 1 deletion configs/ea3131/src/lpc31_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include "up_arch.h"
#include "up_internal.h"
#include "lpc31_internal.h"
#include "ea3131_internal.h"
#include "ea3131.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/ea3131/src/lpc31_buttons.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <nuttx/board.h>
#include <arch/board/board.h>

#include "ea3131_internal.h"
#include "ea3131.h"

#ifdef CONFIG_ARCH_BUTTONS

Expand Down
2 changes: 1 addition & 1 deletion configs/ea3131/src/lpc31_mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
#include "lpc31_syscreg.h"
#include "lpc31_cgudrvr.h"
#include "lpc31_mpmc.h"
#include "ea3131_internal.h"
#include "ea3131.h"

#ifdef CONFIG_LPC31_EXTDRAM

Expand Down
2 changes: 1 addition & 1 deletion configs/ea3131/src/lpc31_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include "up_arch.h"
#include "chip.h"
#include "lpc31_internal.h"
#include "ea3131_internal.h"
#include "ea3131.h"

#ifdef CONFIG_LPC31_SPI
#if 0 /* At present, EA3131 specific logic is hard-coded in the file lpc31_spi.c
Expand Down
2 changes: 1 addition & 1 deletion configs/ea3131/src/lpc31_usbhost.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include "up_arch.h"

#include "lpc31_internal.h"
#include "ea3131_internal.h"
#include "ea3131.h"

#if defined(CONFIG_LPC31_USBOTG) || defined(CONFIG_USBHOST)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/************************************************************************************
* configs/ea3152/src/ea3152_internal.h
* configs/ea3152/src/ea3152.h
*
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -33,8 +33,8 @@
*
************************************************************************************/

#ifndef __CONFIGS_EA3152_SRC_EA3152_INTERNAL_H
#define __CONFIGS_EA3152_SRC_EA3152_INTERNAL_H
#ifndef __CONFIGS_EA3152_SRC_EA3152_H
#define __CONFIGS_EA3152_SRC_EA3152_H

/************************************************************************************
* Included Files
Expand Down Expand Up @@ -122,4 +122,4 @@ void weak_function lpc31_pginitialize(void);
#endif

#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_EA3152_SRC_EA3152_INTERNAL_H */
#endif /* __CONFIGS_EA3152_SRC_EA3152_H */
2 changes: 1 addition & 1 deletion configs/ea3152/src/lpc31_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include "up_arch.h"
#include "up_internal.h"
#include "lpc31_internal.h"
#include "ea3152_internal.h"
#include "ea3152.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/ea3152/src/lpc31_buttons.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <nuttx/board.h>
#include <arch/board/board.h>

#include "ea3152_internal.h"
#include "ea3152.h"

#ifdef CONFIG_ARCH_BUTTONS

Expand Down
2 changes: 1 addition & 1 deletion configs/ea3152/src/lpc31_mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
#include "lpc31_syscreg.h"
#include "lpc31_cgudrvr.h"
#include "lpc31_mpmc.h"
#include "ea3152_internal.h"
#include "ea3152.h"

#ifdef CONFIG_LPC31_EXTDRAM

Expand Down
2 changes: 1 addition & 1 deletion configs/ea3152/src/lpc31_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include "up_arch.h"
#include "chip.h"
#include "lpc31_internal.h"
#include "ea3152_internal.h"
#include "ea3152.h"

#ifdef CONFIG_LPC31_SPI
#if 0 /* At present, EA3152 specific logic is hard-coded in the file lpc31_spi.c
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/************************************************************************************
* configs/eagle100/src/eagle100_internal.h
* configs/eagle100/src/eagle100.h
*
* Copyright (C) 2009-2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
Expand Down Expand Up @@ -33,8 +33,8 @@
*
************************************************************************************/

#ifndef __CONFIGS_EAGLE100_SRC_EAGLE100_INTERNAL_H
#define __CONFIGS_EAGLE100_SRC_EAGLE100_INTERNAL_H
#ifndef __CONFIGS_EAGLE100_SRC_EAGLE100_H
#define __CONFIGS_EAGLE100_SRC_EAGLE100_H

/************************************************************************************
* Included Files
Expand Down Expand Up @@ -87,5 +87,5 @@
void weak_function lm_ssiinitialize(void);

#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_EAGLE100_SRC_EAGLE100_INTERNAL_H */
#endif /* __CONFIGS_EAGLE100_SRC_EAGLE100_H */

2 changes: 1 addition & 1 deletion configs/eagle100/src/lm_boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <arch/board/board.h>

#include "up_arch.h"
#include "eagle100_internal.h"
#include "eagle100.h"

/************************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/eagle100/src/lm_leds.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include "up_arch.h"
#include "up_internal.h"
#include "tiva_gpio.h"
#include "eagle100_internal.h"
#include "eagle100.h"

/****************************************************************************
* Pre-processor Definitions
Expand Down
2 changes: 1 addition & 1 deletion configs/eagle100/src/lm_ssi.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include "up_arch.h"
#include "chip.h"
#include "tiva_gpio.h"
#include "eagle100_internal.h"
#include "eagle100.h"

/* The Eagle100 microSD CS is on SSI0 */

Expand Down
Loading

0 comments on commit 6daa73a

Please sign in to comment.