diff --git a/configs/stm32f3discovery/src/stm32_autoleds.c b/configs/stm32f3discovery/src/stm32_autoleds.c index a9223490e8e..d55a5835ce3 100644 --- a/configs/stm32f3discovery/src/stm32_autoleds.c +++ b/configs/stm32f3discovery/src/stm32_autoleds.c @@ -48,7 +48,7 @@ #include "chip.h" #include "stm32.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" #ifdef CONFIG_ARCH_LEDS diff --git a/configs/stm32f3discovery/src/stm32_boot.c b/configs/stm32f3discovery/src/stm32_boot.c index e6458451c69..f7b420491b8 100644 --- a/configs/stm32f3discovery/src/stm32_boot.c +++ b/configs/stm32f3discovery/src/stm32_boot.c @@ -45,7 +45,7 @@ #include #include "up_arch.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" /************************************************************************************ * Pre-processor Definitions diff --git a/configs/stm32f3discovery/src/stm32_buttons.c b/configs/stm32f3discovery/src/stm32_buttons.c index bc62f3f753c..fa7ccb6fe07 100644 --- a/configs/stm32f3discovery/src/stm32_buttons.c +++ b/configs/stm32f3discovery/src/stm32_buttons.c @@ -45,7 +45,7 @@ #include #include -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" #ifdef CONFIG_ARCH_BUTTONS diff --git a/configs/stm32f3discovery/src/stm32_nsh.c b/configs/stm32f3discovery/src/stm32_nsh.c index 749c7628551..d0b847ce2f6 100644 --- a/configs/stm32f3discovery/src/stm32_nsh.c +++ b/configs/stm32f3discovery/src/stm32_nsh.c @@ -51,7 +51,7 @@ #endif #include "stm32.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" /**************************************************************************** * Pre-processor Definitions diff --git a/configs/stm32f3discovery/src/stm32_pwm.c b/configs/stm32f3discovery/src/stm32_pwm.c index 552c54c40fa..7b1dd6830a9 100644 --- a/configs/stm32f3discovery/src/stm32_pwm.c +++ b/configs/stm32f3discovery/src/stm32_pwm.c @@ -50,7 +50,7 @@ #include "chip.h" #include "up_arch.h" #include "stm32_pwm.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" /************************************************************************************ * Pre-processor Definitions diff --git a/configs/stm32f3discovery/src/stm32_qencoder.c b/configs/stm32f3discovery/src/stm32_qencoder.c index 7f4c5ab66bc..88a45c07228 100644 --- a/configs/stm32f3discovery/src/stm32_qencoder.c +++ b/configs/stm32f3discovery/src/stm32_qencoder.c @@ -48,7 +48,7 @@ #include "chip.h" #include "up_arch.h" #include "stm32_qencoder.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" /************************************************************************************ * Pre-processor Definitions diff --git a/configs/stm32f3discovery/src/stm32_spi.c b/configs/stm32f3discovery/src/stm32_spi.c index 2ca7ec1372c..0a287fae0e1 100644 --- a/configs/stm32f3discovery/src/stm32_spi.c +++ b/configs/stm32f3discovery/src/stm32_spi.c @@ -50,7 +50,7 @@ #include "up_arch.h" #include "chip.h" #include "stm32.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" #if defined(CONFIG_STM32_SPI1) || defined(CONFIG_STM32_SPI2) || defined(CONFIG_STM32_SPI3) diff --git a/configs/stm32f3discovery/src/stm32_usb.c b/configs/stm32f3discovery/src/stm32_usb.c index 7ac236fc6e6..bdeef5886d5 100644 --- a/configs/stm32f3discovery/src/stm32_usb.c +++ b/configs/stm32f3discovery/src/stm32_usb.c @@ -51,7 +51,7 @@ #include "up_arch.h" #include "stm32.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" #ifdef CONFIG_STM32_USB diff --git a/configs/stm32f3discovery/src/stm32_userleds.c b/configs/stm32f3discovery/src/stm32_userleds.c index 77079059a83..8c5d8065a95 100644 --- a/configs/stm32f3discovery/src/stm32_userleds.c +++ b/configs/stm32f3discovery/src/stm32_userleds.c @@ -47,7 +47,7 @@ #include "chip.h" #include "stm32.h" -#include "stm32f3discovery-internal.h" +#include "stm32f3discovery.h" #ifndef CONFIG_ARCH_LEDS diff --git a/configs/stm32f3discovery/src/stm32f3discovery-internal.h b/configs/stm32f3discovery/src/stm32f3discovery.h similarity index 96% rename from configs/stm32f3discovery/src/stm32f3discovery-internal.h rename to configs/stm32f3discovery/src/stm32f3discovery.h index abc4fb35131..aa10bd06f69 100644 --- a/configs/stm32f3discovery/src/stm32f3discovery-internal.h +++ b/configs/stm32f3discovery/src/stm32f3discovery.h @@ -1,6 +1,6 @@ /**************************************************************************************************** - * configs/stm32f3discovery/src/stm32f3discovery-internal.h - * arch/arm/src/board/stm32f3discovery-internal.n + * configs/stm32f3discovery/src/stm32f3discovery.h + * arch/arm/src/board/stm32f3discovery.n * * Copyright (C) 2013 Gregory Nutt. All rights reserved. * Author: Gregory Nutt @@ -34,8 +34,8 @@ * ****************************************************************************************************/ -#ifndef __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_INTERNAL_H -#define __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_INTERNAL_H +#ifndef __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_H +#define __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_H /**************************************************************************************************** * Included Files @@ -163,5 +163,5 @@ void weak_function stm32_usbinitialize(void); #endif #endif /* __ASSEMBLY__ */ -#endif /* __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_INTERNAL_H */ +#endif /* __CONFIGS_STM32F3DISCOVERY_SRC_STM32F3DISCOVERY_H */