diff options
author | Wolfgang Denk <wd@denx.de> | 2014-11-06 14:02:57 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-07 16:27:07 -0500 |
commit | 0060517ae087eed94c64c175e5042b16e0a415fa (patch) | |
tree | 827e188eba7feb81d53025aff9a72b5c355bf170 /board/keymile/common/common.c | |
parent | adbba99606a06df1435de6f1866c0e7996412e27 (diff) | |
download | blackbird-obmc-uboot-0060517ae087eed94c64c175e5042b16e0a415fa.tar.gz blackbird-obmc-uboot-0060517ae087eed94c64c175e5042b16e0a415fa.zip |
cppcheck cleanup: fix nullPointer errors
There are a number of places where U-Boot intentionally and legally
accesses physical address 0x0000, for example when installing
exception vectors on systems where these are located in low memory.
Add "cppcheck-suppress nullPointer" comments to silence cppcheck
where this is intentional and legal.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/keymile/common/common.c')
-rw-r--r-- | board/keymile/common/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 2ddb3da38f..b9aff1a84d 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -360,6 +360,7 @@ static int do_checktestboot(cmd_tbl_t *cmdtp, int flag, int argc, testboot = (testpin != 0) && (s); if (verbose) { printf("testpin = %d\n", testpin); + /* cppcheck-suppress nullPointer */ printf("test_bank = %s\n", s ? s : "not set"); printf("boot test app : %s\n", (testboot) ? "yes" : "no"); } |