aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrei Homescu <ahomescu@google.com>2022-07-22 01:40:42 +0000
committerAndrei Homescu <ahomescu@google.com>2022-07-22 01:40:42 +0000
commited092f3de996570b128bb6f8f628d93e886a9517 (patch)
treed143325606ef936760b817b9a5464807021667fb /lib
parentd13f47085939f49b0e5aad278803470d348669a7 (diff)
downloadcommon-ed092f3de996570b128bb6f8f628d93e886a9517.tar.gz
Revert "include/debug.h: Namespace LK debug levels by prefixing ..."
Revert submission 2161077-trusty-kernel-namespace-debuglevels Reason for revert: broke downstream builds Reverted Changes: I07fc3efe4:include/debug.h: Namespace LK debug levels by pref... Ibbc7a15ed:lib/trusty: Namespace LK debug levels by prefixing... Change-Id: I260f73bf06708db7944b200dc669d5c935a4136d
Diffstat (limited to 'lib')
-rw-r--r--lib/heap/miniheap/miniheap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/heap/miniheap/miniheap.c b/lib/heap/miniheap/miniheap.c
index 950c0206..ac705cf5 100644
--- a/lib/heap/miniheap/miniheap.c
+++ b/lib/heap/miniheap/miniheap.c
@@ -107,7 +107,7 @@ void miniheap_dump(void)
// nearby ones if possible. Returns base of whatever chunk it became in the list.
static struct free_heap_chunk *heap_insert_free_chunk(struct free_heap_chunk *chunk)
{
-#if LK_DEBUGLEVEL > LK_DEBUGLEVEL_INFO
+#if LK_DEBUGLEVEL > INFO
vaddr_t chunk_end = (vaddr_t)chunk + chunk->len;
#endif