helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls to command_print/command_print_sameline should switch to CMD as first parameter. Change prototype of command_print() and command_print_sameline() to pass CMD instead of CMD_CTX. Since the first parameter is currently not used, the change can be done though scripts without manual coding. This patch is created using the command: sed -i PATTERN $(find src/ doc/ -type f) with all the following patters: 's/\(command_print(cmd\)->ctx,/\1,/' 's/\(command_print(CMD\)_CTX,/\1,/' 's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/' 's/\(command_print_sameline(cmd\)->ctx,/\1,/' 's/\(command_print_sameline(CMD\)_CTX,/\1,/' 's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/' This change is inspired by http://openocd.zylin.com/1815 from Paul Fertser but is now done through scripting. Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/5081 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
committed by
Tomas Vanek
parent
6916550938
commit
6cb5ba6f11
@@ -2895,7 +2895,7 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||
flex_nvm_partition_code = (uint8_t)((sim_fcfg1 >> 8) & 0x0f);
|
||||
switch (flex_nvm_partition_code) {
|
||||
case 0:
|
||||
command_print(CMD_CTX, "No EEPROM backup, data flash only");
|
||||
command_print(CMD, "No EEPROM backup, data flash only");
|
||||
break;
|
||||
case 1:
|
||||
case 2:
|
||||
@@ -2903,10 +2903,10 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||
case 4:
|
||||
case 5:
|
||||
case 6:
|
||||
command_print(CMD_CTX, "EEPROM backup %d KB", 4 << flex_nvm_partition_code);
|
||||
command_print(CMD, "EEPROM backup %d KB", 4 << flex_nvm_partition_code);
|
||||
break;
|
||||
case 8:
|
||||
command_print(CMD_CTX, "No data flash, EEPROM backup only");
|
||||
command_print(CMD, "No data flash, EEPROM backup only");
|
||||
break;
|
||||
case 0x9:
|
||||
case 0xA:
|
||||
@@ -2914,13 +2914,13 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||
case 0xC:
|
||||
case 0xD:
|
||||
case 0xE:
|
||||
command_print(CMD_CTX, "data flash %d KB", 4 << (flex_nvm_partition_code & 7));
|
||||
command_print(CMD, "data flash %d KB", 4 << (flex_nvm_partition_code & 7));
|
||||
break;
|
||||
case 0xf:
|
||||
command_print(CMD_CTX, "No EEPROM backup, data flash only (DEPART not set)");
|
||||
command_print(CMD, "No EEPROM backup, data flash only (DEPART not set)");
|
||||
break;
|
||||
default:
|
||||
command_print(CMD_CTX, "Unsupported EEPROM backup size code 0x%02" PRIx8, flex_nvm_partition_code);
|
||||
command_print(CMD, "Unsupported EEPROM backup size code 0x%02" PRIx8, flex_nvm_partition_code);
|
||||
}
|
||||
return ERROR_OK;
|
||||
|
||||
@@ -2986,7 +2986,7 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||
if (result != ERROR_OK)
|
||||
return result;
|
||||
|
||||
command_print(CMD_CTX, "FlexNVM partition set. Please reset MCU.");
|
||||
command_print(CMD, "FlexNVM partition set. Please reset MCU.");
|
||||
|
||||
if (k_chip) {
|
||||
first_nvm_bank = k_chip->num_pflash_blocks;
|
||||
@@ -2996,7 +2996,7 @@ COMMAND_HANDLER(kinetis_nvm_partition)
|
||||
k_chip->probed = false;
|
||||
}
|
||||
|
||||
command_print(CMD_CTX, "FlexNVM banks will be re-probed to set new data flash size.");
|
||||
command_print(CMD, "FlexNVM banks will be re-probed to set new data flash size.");
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
@@ -3015,12 +3015,12 @@ COMMAND_HANDLER(kinetis_fcf_source_handler)
|
||||
}
|
||||
|
||||
if (allow_fcf_writes) {
|
||||
command_print(CMD_CTX, "Arbitrary Flash Configuration Field writes enabled.");
|
||||
command_print(CMD_CTX, "Protection info writes to FCF disabled.");
|
||||
command_print(CMD, "Arbitrary Flash Configuration Field writes enabled.");
|
||||
command_print(CMD, "Protection info writes to FCF disabled.");
|
||||
LOG_WARNING("BEWARE: incorrect flash configuration may permanently lock the device.");
|
||||
} else {
|
||||
command_print(CMD_CTX, "Protection info writes to Flash Configuration Field enabled.");
|
||||
command_print(CMD_CTX, "Arbitrary FCF writes disabled. Mode safe from unwanted locking of the device.");
|
||||
command_print(CMD, "Protection info writes to Flash Configuration Field enabled.");
|
||||
command_print(CMD, "Arbitrary FCF writes disabled. Mode safe from unwanted locking of the device.");
|
||||
}
|
||||
|
||||
return ERROR_OK;
|
||||
@@ -3035,7 +3035,7 @@ COMMAND_HANDLER(kinetis_fopt_handler)
|
||||
fcf_fopt = (uint8_t)strtoul(CMD_ARGV[0], NULL, 0);
|
||||
fcf_fopt_configured = true;
|
||||
} else {
|
||||
command_print(CMD_CTX, "FCF_FOPT 0x%02" PRIx8, fcf_fopt);
|
||||
command_print(CMD, "FCF_FOPT 0x%02" PRIx8, fcf_fopt);
|
||||
}
|
||||
|
||||
return ERROR_OK;
|
||||
|
||||
Reference in New Issue
Block a user