target: convert 'unsigned' to 'unsigned int'
Conversion done with checkpatch --fix-inplace -types UNSPECIFIED_INT Ignore the cast as they could be better addressed. Fix only minor additional checkpatch issue (spacing and line length). Use Checkpatch-ignore below for the function pointers in the file 'armv7a_cache_l2x.h' that do not assign the identifier names to the function arguments. Most of these struct are unused and should be fixed or dropped. Checkpatch-ignore: FUNCTION_ARGUMENTS Change-Id: I8f27e68eb3502e431c1ba801b362358105f9f2dc Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8480 Tested-by: jenkins Reviewed-by: zapb <dev@zapb.de>
This commit is contained in:
@@ -283,7 +283,7 @@ static int esirisc_save_context(struct target *target)
|
||||
|
||||
LOG_DEBUG("-");
|
||||
|
||||
for (unsigned i = 0; i < esirisc->reg_cache->num_regs; ++i) {
|
||||
for (unsigned int i = 0; i < esirisc->reg_cache->num_regs; ++i) {
|
||||
struct reg *reg = esirisc->reg_cache->reg_list + i;
|
||||
struct esirisc_reg *reg_info = reg->arch_info;
|
||||
|
||||
@@ -300,7 +300,7 @@ static int esirisc_restore_context(struct target *target)
|
||||
|
||||
LOG_DEBUG("-");
|
||||
|
||||
for (unsigned i = 0; i < esirisc->reg_cache->num_regs; ++i) {
|
||||
for (unsigned int i = 0; i < esirisc->reg_cache->num_regs; ++i) {
|
||||
struct reg *reg = esirisc->reg_cache->reg_list + i;
|
||||
struct esirisc_reg *reg_info = reg->arch_info;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user