From 234ca3089f054c3b90370487826b1edfedb46043 Mon Sep 17 00:00:00 2001 From: driftregion <20824939+driftregion@users.noreply.github.com> Date: Thu, 18 Aug 2022 09:32:15 +0800 Subject: [PATCH] fix linux build: use consistent case when including header files --- source/arm/gfc100/FlashDev.c | 2 +- source/arm/gfc100/FlashPrg.c | 2 +- source/arm/mt25ql512/FlashDev.c | 2 +- source/arm/mt25ql512/FlashPrg.c | 2 +- source/freescale/FlashDev.c | 2 +- source/freescale/FlashPrg.c | 2 +- source/nordic/FlashDev.c | 2 +- source/nordic/FlashPrg.c | 2 +- source/nxp/iap/FlashDev.c | 2 +- source/nxp/iap/FlashPrg.c | 2 +- source/nxp/iap_32kb/FlashDev.c | 2 +- source/nxp/iap_32kb/FlashPrg.c | 2 +- source/nxp/lpc4088_512kb_spifi/FlashDev.c | 2 +- source/nxp/lpc4088_512kb_spifi/FlashPrg.c | 2 +- source/nxp/lpc54018/FlashDev.c | 2 +- source/nxp/lpc54018/FlashPrg.c | 2 +- source/nxp/lpc54114/FlashDev.c | 2 +- source/nxp/lpc54114/FlashPrg.c | 2 +- source/nxp/lpc54608/FlashDev.c | 2 +- source/nxp/lpc54608/FlashPrg.c | 2 +- source/nxp/lpc8xx_32kb/FlashDev.c | 2 +- source/nxp/lpc8xx_32kb/FlashPrg.c | 2 +- source/nxp/spifi/FlashDev.c | 2 +- source/nxp/spifi/FlashPrg.c | 2 +- source/onsemi/FlashDev.c | 2 +- source/siliconlabs/EFM32GG/FlashDev.c | 2 +- source/st/FlashDev.c | 2 +- source/st/FlashPrg.c | 2 +- source/st/STM32F4xx/FlashDev.c | 2 +- source/st/STM32F4xx/FlashPrg.c | 2 +- source/st/STM32L0xx/FlashDev.c | 2 +- source/st/STM32L0xx/FlashPrg.c | 2 +- source/template/FlashDev.c | 2 +- source/ti/CC3220SF/FlashDev.c | 2 +- source/toshiba/TZ10XX/FlashDev.c | 2 +- source/wiznet/W7500/FlashDev.c | 2 +- source/wiznet/W7500/FlashPrg.c | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/source/arm/gfc100/FlashDev.c b/source/arm/gfc100/FlashDev.c index c771937..b2c9992 100755 --- a/source/arm/gfc100/FlashDev.c +++ b/source/arm/gfc100/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/arm/gfc100/FlashPrg.c b/source/arm/gfc100/FlashPrg.c index 2cbba68..de1794e 100755 --- a/source/arm/gfc100/FlashPrg.c +++ b/source/arm/gfc100/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "gfc100_eflash_drv.h" #define SYSTEM_CLOCK (40960000UL) diff --git a/source/arm/mt25ql512/FlashDev.c b/source/arm/mt25ql512/FlashDev.c index ff43b63..5ddf064 100755 --- a/source/arm/mt25ql512/FlashDev.c +++ b/source/arm/mt25ql512/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/arm/mt25ql512/FlashPrg.c b/source/arm/mt25ql512/FlashPrg.c index 02f9a61..c5d36eb 100755 --- a/source/arm/mt25ql512/FlashPrg.c +++ b/source/arm/mt25ql512/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "mt25ql_flash_lib.h" static const struct qspi_ip6514e_dev_cfg_t QSPI_DEV_CFG = { diff --git a/source/freescale/FlashDev.c b/source/freescale/FlashDev.c index 6d3158e..5fae773 100644 --- a/source/freescale/FlashDev.c +++ b/source/freescale/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "MKXX" diff --git a/source/freescale/FlashPrg.c b/source/freescale/FlashPrg.c index 14c700d..9d19e41 100644 --- a/source/freescale/FlashPrg.c +++ b/source/freescale/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_flash.h" #include "string.h" diff --git a/source/nordic/FlashDev.c b/source/nordic/FlashDev.c index d7f255b..1d41a62 100644 --- a/source/nordic/FlashDev.c +++ b/source/nordic/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "nRF51822AA 256 KB Flash" diff --git a/source/nordic/FlashPrg.c b/source/nordic/FlashPrg.c index 802012b..5e1a5d7 100644 --- a/source/nordic/FlashPrg.c +++ b/source/nordic/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" +#include "FlashOS.h" #define U8 unsigned char #define U16 unsigned short diff --git a/source/nxp/iap/FlashDev.c b/source/nxp/iap/FlashDev.c index b2c4f8b..6e3fc89 100644 --- a/source/nxp/iap/FlashDev.c +++ b/source/nxp/iap/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "../FlashOS.H" // FlashOS Structures +#include "../FlashOS.h" // FlashOS Structures #ifdef MBED #ifdef LPC1700_512 diff --git a/source/nxp/iap/FlashPrg.c b/source/nxp/iap/FlashPrg.c index 37a7b83..e62f1a8 100644 --- a/source/nxp/iap/FlashPrg.c +++ b/source/nxp/iap/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "../FlashOS.H" // FlashOS Structures +#include "../FlashOS.h" // FlashOS Structures // Memory Mapping Control #if defined(LPC11xx_32) || defined(LPC8xx_4) || defined(LPC11U68_256) diff --git a/source/nxp/iap_32kb/FlashDev.c b/source/nxp/iap_32kb/FlashDev.c index 7712fa0..49ba2b5 100644 --- a/source/nxp/iap_32kb/FlashDev.c +++ b/source/nxp/iap_32kb/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/iap_32kb/FlashPrg.c b/source/nxp/iap_32kb/FlashPrg.c index 6761adb..36730cd 100644 --- a/source/nxp/iap_32kb/FlashPrg.c +++ b/source/nxp/iap_32kb/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures // Memory Mapping Control #define MEMMAP (*((volatile unsigned long *) 0x40048000)) diff --git a/source/nxp/lpc4088_512kb_spifi/FlashDev.c b/source/nxp/lpc4088_512kb_spifi/FlashDev.c index 484feb0..bbffce0 100644 --- a/source/nxp/lpc4088_512kb_spifi/FlashDev.c +++ b/source/nxp/lpc4088_512kb_spifi/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/lpc4088_512kb_spifi/FlashPrg.c b/source/nxp/lpc4088_512kb_spifi/FlashPrg.c index 5cd1431..b2ae70c 100644 --- a/source/nxp/lpc4088_512kb_spifi/FlashPrg.c +++ b/source/nxp/lpc4088_512kb_spifi/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures // Memory Mapping Control #define MEMMAP (*((volatile unsigned char *) 0x400FC040)) diff --git a/source/nxp/lpc54018/FlashDev.c b/source/nxp/lpc54018/FlashDev.c index 68fead7..89ea19a 100644 --- a/source/nxp/lpc54018/FlashDev.c +++ b/source/nxp/lpc54018/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/lpc54018/FlashPrg.c b/source/nxp/lpc54018/FlashPrg.c index 47fd0bb..f309610 100644 --- a/source/nxp/lpc54018/FlashPrg.c +++ b/source/nxp/lpc54018/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_spifi.h" #include "string.h" diff --git a/source/nxp/lpc54114/FlashDev.c b/source/nxp/lpc54114/FlashDev.c index e08adff..53decbd 100644 --- a/source/nxp/lpc54114/FlashDev.c +++ b/source/nxp/lpc54114/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_device_registers.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/lpc54114/FlashPrg.c b/source/nxp/lpc54114/FlashPrg.c index 0f9d8c6..5051511 100644 --- a/source/nxp/lpc54114/FlashPrg.c +++ b/source/nxp/lpc54114/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_flashiap.h" #include "fsl_power.h" #include "string.h" diff --git a/source/nxp/lpc54608/FlashDev.c b/source/nxp/lpc54608/FlashDev.c index 4bb07e4..bc45d26 100644 --- a/source/nxp/lpc54608/FlashDev.c +++ b/source/nxp/lpc54608/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_device_registers.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/lpc54608/FlashPrg.c b/source/nxp/lpc54608/FlashPrg.c index cc99cdb..f45115b 100644 --- a/source/nxp/lpc54608/FlashPrg.c +++ b/source/nxp/lpc54608/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #include "fsl_flashiap.h" #include "fsl_power.h" #include "string.h" diff --git a/source/nxp/lpc8xx_32kb/FlashDev.c b/source/nxp/lpc8xx_32kb/FlashDev.c index 29a7ef3..ddab8db 100644 --- a/source/nxp/lpc8xx_32kb/FlashDev.c +++ b/source/nxp/lpc8xx_32kb/FlashDev.c @@ -24,7 +24,7 @@ * Project: Flash Device Description for NXP LPC8xx Flash using IAP * --------------------------------------------------------------------------- */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! diff --git a/source/nxp/lpc8xx_32kb/FlashPrg.c b/source/nxp/lpc8xx_32kb/FlashPrg.c index b98d92d..4db9969 100644 --- a/source/nxp/lpc8xx_32kb/FlashPrg.c +++ b/source/nxp/lpc8xx_32kb/FlashPrg.c @@ -24,7 +24,7 @@ * Project: Flash Device Algorithm for NXP LPC8xx Flash using IAP * --------------------------------------------------------------------------- */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures // Memory Mapping Control #define MEMMAP (*((volatile unsigned char *) 0x40048000)) diff --git a/source/nxp/spifi/FlashDev.c b/source/nxp/spifi/FlashDev.c index f6f9c6c..5100ad1 100644 --- a/source/nxp/spifi/FlashDev.c +++ b/source/nxp/spifi/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "../FlashOS.H" // FlashOS Structures +#include "../FlashOS.h" // FlashOS Structures #include "FlashDev.h" struct FlashDevice const FlashDevice = { diff --git a/source/nxp/spifi/FlashPrg.c b/source/nxp/spifi/FlashPrg.c index 8e54410..26270af 100644 --- a/source/nxp/spifi/FlashPrg.c +++ b/source/nxp/spifi/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "../FlashOS.H" // FlashOS Structures +#include "../FlashOS.h" // FlashOS Structures #include "FlashDev.h" #include "spifi_rom_api.h" diff --git a/source/onsemi/FlashDev.c b/source/onsemi/FlashDev.c index d8689fe..974caa4 100644 --- a/source/onsemi/FlashDev.c +++ b/source/onsemi/FlashDev.c @@ -16,7 +16,7 @@ /** @file FlashDev.c */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "NCS36510 640 KB Flash" diff --git a/source/siliconlabs/EFM32GG/FlashDev.c b/source/siliconlabs/EFM32GG/FlashDev.c index 3d062a2..4bd9940 100644 --- a/source/siliconlabs/EFM32GG/FlashDev.c +++ b/source/siliconlabs/EFM32GG/FlashDev.c @@ -16,7 +16,7 @@ /** @file FlashDev.c */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "EFM32 Giant Gecko" diff --git a/source/st/FlashDev.c b/source/st/FlashDev.c index 3a85752..a39150e 100644 --- a/source/st/FlashDev.c +++ b/source/st/FlashDev.c @@ -29,7 +29,7 @@ * Initial release */ -#include "..\FlashOS.H" // FlashOS Structures +#include "..\FlashOS.h" // FlashOS Structures #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "STM32L151 256kB Flash" diff --git a/source/st/FlashPrg.c b/source/st/FlashPrg.c index cb93a09..1472b96 100644 --- a/source/st/FlashPrg.c +++ b/source/st/FlashPrg.c @@ -29,7 +29,7 @@ * Initial release */ -#include "..\FlashOS.H" // FlashOS Structures +#include "..\FlashOS.h" // FlashOS Structures typedef volatile unsigned char vu8; typedef volatile unsigned long vu32; diff --git a/source/st/STM32F4xx/FlashDev.c b/source/st/STM32F4xx/FlashDev.c index b697299..53be9d1 100644 --- a/source/st/STM32F4xx/FlashDev.c +++ b/source/st/STM32F4xx/FlashDev.c @@ -29,7 +29,7 @@ * Initial release */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #ifdef FLASH_MEM diff --git a/source/st/STM32F4xx/FlashPrg.c b/source/st/STM32F4xx/FlashPrg.c index c996393..0df0250 100644 --- a/source/st/STM32F4xx/FlashPrg.c +++ b/source/st/STM32F4xx/FlashPrg.c @@ -29,7 +29,7 @@ * Initial release */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures typedef volatile unsigned char vu8; typedef unsigned char u8; diff --git a/source/st/STM32L0xx/FlashDev.c b/source/st/STM32L0xx/FlashDev.c index f004a2e..c80d525 100644 --- a/source/st/STM32L0xx/FlashDev.c +++ b/source/st/STM32L0xx/FlashDev.c @@ -31,7 +31,7 @@ * Initial release */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures #ifdef FLASH_MEMORY diff --git a/source/st/STM32L0xx/FlashPrg.c b/source/st/STM32L0xx/FlashPrg.c index 998c04c..666ee29 100644 --- a/source/st/STM32L0xx/FlashPrg.c +++ b/source/st/STM32L0xx/FlashPrg.c @@ -31,7 +31,7 @@ * Initial release */ -#include "FlashOS.H" // FlashOS Structures +#include "FlashOS.h" // FlashOS Structures typedef volatile unsigned char vu8; typedef volatile unsigned long vu32; diff --git a/source/template/FlashDev.c b/source/template/FlashDev.c index 8afead7..c46c180 100644 --- a/source/template/FlashDev.c +++ b/source/template/FlashDev.c @@ -16,7 +16,7 @@ /** @file FlashDev.c */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "XXXX" diff --git a/source/ti/CC3220SF/FlashDev.c b/source/ti/CC3220SF/FlashDev.c index c7fb2e9..f4565de 100644 --- a/source/ti/CC3220SF/FlashDev.c +++ b/source/ti/CC3220SF/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ /** @file FlashDev.c */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "CC3220SF" diff --git a/source/toshiba/TZ10XX/FlashDev.c b/source/toshiba/TZ10XX/FlashDev.c index d5ea7c1..83b36bf 100644 --- a/source/toshiba/TZ10XX/FlashDev.c +++ b/source/toshiba/TZ10XX/FlashDev.c @@ -16,7 +16,7 @@ /** @file FlashDev.c */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "TZ10XX on package NOR flash(1MB)" diff --git a/source/wiznet/W7500/FlashDev.c b/source/wiznet/W7500/FlashDev.c index 08b18e5..68f9bd7 100644 --- a/source/wiznet/W7500/FlashDev.c +++ b/source/wiznet/W7500/FlashDev.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" +#include "FlashOS.h" #define FLASH_DRV_VERS (0x0100+VERS) // Driver Version, do not modify! #define DEVICE_NAME "W7500 128KB Flash" diff --git a/source/wiznet/W7500/FlashPrg.c b/source/wiznet/W7500/FlashPrg.c index 4c61757..f9bb43c 100644 --- a/source/wiznet/W7500/FlashPrg.c +++ b/source/wiznet/W7500/FlashPrg.c @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "FlashOS.H" +#include "FlashOS.h" #define IAP_ENTRY 0x1FFF1001