aboutsummaryrefslogtreecommitdiff
path: root/src/helper/jep106.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2023-04-09 00:16:28 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2023-05-05 22:09:09 +0000
commitcd44c6cf83841076b40e7a873285117b7440dd42 (patch)
treed35316357cc3233136a2b60685269efe24d21ca6 /src/helper/jep106.c
parent9dc1d90f64168863d350694d38e5ff7f20a57a7e (diff)
downloadriscv-openocd-cd44c6cf83841076b40e7a873285117b7440dd42.zip
riscv-openocd-cd44c6cf83841076b40e7a873285117b7440dd42.tar.gz
riscv-openocd-cd44c6cf83841076b40e7a873285117b7440dd42.tar.bz2
helper: with pointers, use NULL instead of 0
Don't compare pointers with 0, use NULL when needed. Don't assign pointer to 0, use NULL. Don't pass 0 ad pointer argument, pass NULL. Detected through 'sparse' tool. Change-Id: I3f867cb9c0903f6e396311e7b3970ee5fb3a4231 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7597 Tested-by: jenkins
Diffstat (limited to 'src/helper/jep106.c')
-rw-r--r--src/helper/jep106.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/jep106.c b/src/helper/jep106.c
index d422561..62d24a9 100644
--- a/src/helper/jep106.c
+++ b/src/helper/jep106.c
@@ -26,7 +26,7 @@ const char *jep106_table_manufacturer(unsigned int bank, unsigned int id)
/* index is zero based */
id--;
- if (bank >= ARRAY_SIZE(jep106) || jep106[bank][id] == 0)
+ if (bank >= ARRAY_SIZE(jep106) || !jep106[bank][id])
return "<unknown>";
return jep106[bank][id];