boards: stm32f7: fix Mixed case identifier errors

Fix the Mixed case identifier errors found on stm32f7 family

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea 2021-03-19 08:39:20 +01:00 committed by Xiang Xiao
parent 66d312985c
commit b8b7144041
2 changed files with 4 additions and 4 deletions

View File

@ -381,7 +381,7 @@
#define GPIO_TP_INT (GPIO_INPUT|GPIO_FLOAT|GPIO_EXTI|GPIO_PORTI|GPIO_PIN13)
#define FT5x06_I2C_ADDRESS (0x70 >> 1)
#define FT5X06_I2C_ADDRESS (0x70 >> 1)
/* The STM32 F7 connects to a SMSC LAN8742A PHY using these pins:
*

View File

@ -53,7 +53,7 @@
* Pre-processor Definitions
****************************************************************************/
#define FT5x06_FREQUENCY 100000 /* For now, will boost later */
#define FT5X06_FREQUENCY 100000 /* For now, will boost later */
#ifdef CONFIG_INPUT_FT5X06
#ifndef CONFIG_INPUT
@ -107,8 +107,8 @@ static void stm32_ft5x06_nreset(FAR const struct ft5x06_config_s *config,
static const struct ft5x06_config_s g_ft5x06_config =
{
.address = FT5x06_I2C_ADDRESS,
.frequency = FT5x06_FREQUENCY,
.address = FT5X06_I2C_ADDRESS,
.frequency = FT5X06_FREQUENCY,
#ifndef CONFIG_FT5X06_POLLMODE
.attach = stm32_ft5x06_attach,
.enable = stm32_ft5x06_enable,