mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
Add assert() for debug assertions
assert() is like BUG_ON() but compiles to nothing unless DEBUG is defined. This is useful when a condition is an error but a board reset is unlikely to fix it, so it is better to soldier on in hope. Assertion failures should be caught during development/test. It turns out that assert() is defined separately in a few places in U-Boot with various meanings. This patch cleans up some of these. Build errors exposed by this change (and defining DEBUG) are also fixed in this patch. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
6a8760d748
commit
21726a7afc
5 changed files with 29 additions and 20 deletions
|
@ -17,11 +17,6 @@
|
|||
|
||||
#include <linux/types.h>
|
||||
#include <exports.h>
|
||||
#if 0
|
||||
#include <assert.h>
|
||||
#else
|
||||
#define assert(arg)
|
||||
#endif
|
||||
|
||||
void qsort(void *base,
|
||||
size_t nel,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue