forked from auracaster/openocd
fix GCC's -Wcalloc-transposed-args warning
GCC 14.1.0 warns about calls to `calloc()` with element size as the first argument. Link: https://gcc.gnu.org/onlinedocs/gcc-14.1.0/gcc/Warning-Options.html#index-Wcalloc-transposed-args Change-Id: I7d44a74a003ee6ec49d165f91727972478214587 Signed-off-by: Evgeniy Naydanov <evgeniy.naydanov@syntacore.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8301 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
committed by
Antonio Borneo
parent
e4c0904731
commit
400cf213c0
@@ -124,7 +124,7 @@ FLASH_BANK_COMMAND_HANDLER(ambiqmicro_flash_bank_command)
|
||||
if (CMD_ARGC < 6)
|
||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||
|
||||
ambiqmicro_info = calloc(sizeof(struct ambiqmicro_flash_bank), 1);
|
||||
ambiqmicro_info = calloc(1, sizeof(struct ambiqmicro_flash_bank));
|
||||
|
||||
bank->driver_priv = ambiqmicro_info;
|
||||
|
||||
|
||||
@@ -560,7 +560,7 @@ static int at91sam7_read_part_info(struct flash_bank *bank)
|
||||
if (bnk > 0) {
|
||||
if (!t_bank->next) {
|
||||
/* create a new flash bank element */
|
||||
struct flash_bank *fb = calloc(sizeof(struct flash_bank), 1);
|
||||
struct flash_bank *fb = calloc(1, sizeof(struct flash_bank));
|
||||
if (!fb) {
|
||||
LOG_ERROR("No memory for flash bank");
|
||||
return ERROR_FAIL;
|
||||
@@ -748,7 +748,7 @@ FLASH_BANK_COMMAND_HANDLER(at91sam7_flash_bank_command)
|
||||
if (bnk > 0) {
|
||||
if (!t_bank->next) {
|
||||
/* create a new bank element */
|
||||
struct flash_bank *fb = calloc(sizeof(struct flash_bank), 1);
|
||||
struct flash_bank *fb = calloc(1, sizeof(struct flash_bank));
|
||||
if (!fb) {
|
||||
LOG_ERROR("No memory for flash bank");
|
||||
return ERROR_FAIL;
|
||||
|
||||
@@ -930,7 +930,7 @@ FLASH_BANK_COMMAND_HANDLER(kinetis_flash_bank_command)
|
||||
k_chip = kinetis_get_chip(target);
|
||||
|
||||
if (!k_chip) {
|
||||
k_chip = calloc(sizeof(struct kinetis_chip), 1);
|
||||
k_chip = calloc(1, sizeof(struct kinetis_chip));
|
||||
if (!k_chip) {
|
||||
LOG_ERROR("No memory");
|
||||
return ERROR_FAIL;
|
||||
@@ -1031,7 +1031,7 @@ static int kinetis_create_missing_banks(struct kinetis_chip *k_chip)
|
||||
bank_idx - k_chip->num_pflash_blocks);
|
||||
}
|
||||
|
||||
bank = calloc(sizeof(struct flash_bank), 1);
|
||||
bank = calloc(1, sizeof(struct flash_bank));
|
||||
if (!bank)
|
||||
return ERROR_FAIL;
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ FLASH_BANK_COMMAND_HANDLER(max32xxx_flash_bank_command)
|
||||
return ERROR_FLASH_BANK_INVALID;
|
||||
}
|
||||
|
||||
info = calloc(sizeof(struct max32xxx_flash_bank), 1);
|
||||
info = calloc(1, sizeof(struct max32xxx_flash_bank));
|
||||
COMMAND_PARSE_NUMBER(uint, CMD_ARGV[2], info->flash_size);
|
||||
COMMAND_PARSE_NUMBER(uint, CMD_ARGV[6], info->flc_base);
|
||||
COMMAND_PARSE_NUMBER(uint, CMD_ARGV[7], info->sector_size);
|
||||
|
||||
@@ -937,7 +937,7 @@ static int msp432_probe(struct flash_bank *bank)
|
||||
|
||||
if (is_main && MSP432P4 == msp432_bank->family_type) {
|
||||
/* Create the info flash bank needed by MSP432P4 variants */
|
||||
struct flash_bank *info = calloc(sizeof(struct flash_bank), 1);
|
||||
struct flash_bank *info = calloc(1, sizeof(struct flash_bank));
|
||||
if (!info)
|
||||
return ERROR_FAIL;
|
||||
|
||||
|
||||
@@ -453,7 +453,7 @@ FLASH_BANK_COMMAND_HANDLER(stellaris_flash_bank_command)
|
||||
if (CMD_ARGC < 6)
|
||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
||||
|
||||
stellaris_info = calloc(sizeof(struct stellaris_flash_bank), 1);
|
||||
stellaris_info = calloc(1, sizeof(struct stellaris_flash_bank));
|
||||
bank->base = 0x0;
|
||||
bank->driver_priv = stellaris_info;
|
||||
|
||||
|
||||
@@ -1020,7 +1020,7 @@ static int stm32x_probe(struct flash_bank *bank)
|
||||
assert(num_sectors > 0);
|
||||
|
||||
bank->num_sectors = num_sectors;
|
||||
bank->sectors = calloc(sizeof(struct flash_sector), num_sectors);
|
||||
bank->sectors = calloc(num_sectors, sizeof(struct flash_sector));
|
||||
|
||||
if (stm32x_otp_is_f7(bank))
|
||||
bank->size = STM32F7_OTP_SIZE;
|
||||
|
||||
Reference in New Issue
Block a user