coding style: use ARRAY_SIZE() when possible
We have the macro ARRAY_SIZE() already available. Use it!
Issue identified by checkpatch script from Linux kernel v5.1 using
the command
find src/ -type f -exec ./tools/scripts/checkpatch.pl \
-q --types ARRAY_SIZE -f {} \;
Change-Id: Ic7da9b710edf118eacb08f9e222f34208c580842
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5198
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
@@ -1663,7 +1663,7 @@ static int numicro_get_cpu_type(struct target *target, const struct numicro_cpu_
|
||||
|
||||
LOG_INFO("Device ID: 0x%08" PRIx32 "", part_id);
|
||||
/* search part numbers */
|
||||
for (size_t i = 0; i < sizeof(NuMicroParts)/sizeof(NuMicroParts[0]); i++) {
|
||||
for (size_t i = 0; i < ARRAY_SIZE(NuMicroParts); i++) {
|
||||
if (part_id == NuMicroParts[i].partid) {
|
||||
*cpu = &NuMicroParts[i];
|
||||
LOG_INFO("Device Name: %s", (*cpu)->partname);
|
||||
|
||||
Reference in New Issue
Block a user