This is an automated email from Gerrit. "Jérôme Pouiller <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9443
-- gerrit commit 2481fb7afa2051d764e34b3bf5b0c82144fe5348 Author: Jérôme Pouiller <[email protected]> Date: Wed Jan 28 10:50:10 2026 +0100 flash/nor/efm32: Fix efm32_get_info() name get_efm32_info() was the only function that does not follow the name scheme of the file. Signed-off-by: Jérôme Pouiller <[email protected]> Change-Id: I5eea00ff0f06ba5d7d7cb4f9b1fb4394a5f36e20 diff --git a/src/flash/nor/efm32.c b/src/flash/nor/efm32.c index acd540c55d..12697d2a62 100644 --- a/src/flash/nor/efm32.c +++ b/src/flash/nor/efm32.c @@ -1140,7 +1140,7 @@ static int efm32_protect_check(struct flash_bank *bank) return ERROR_OK; } -static int get_efm32_info(struct flash_bank *bank, struct command_invocation *cmd) +static int efm32_get_info(struct flash_bank *bank, struct command_invocation *cmd) { struct efm32_flash_chip *efm32_info = bank->driver_priv; int ret; @@ -1227,6 +1227,6 @@ const struct flash_driver efm32_flash = { .auto_probe = efm32_auto_probe, .erase_check = default_flash_blank_check, .protect_check = efm32_protect_check, - .info = get_efm32_info, + .info = efm32_get_info, .free_driver_priv = efm32_free_driver_priv, }; --
