commit | c1ad4cee6ffdd10aa1cbb2b30463ca289afa7e20 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <qwandor@google.com> | Thu May 09 11:41:39 2019 +0100 |
committer | Andrew Walbran <qwandor@google.com> | Fri Jul 12 15:26:03 2019 +0100 |
tree | 42f92019e8e94c9f007fb53893fc72b91f001189 | |
parent | 6ef689df25548c3ec9166a7660e01e792b62f537 [diff] [blame] |
Add HVC/SMC call for debug logging. Bug: 115484857 Change-Id: I253adf03ebde97d4b620be9d3f2cc05f5265f45d
diff --git a/inc/hf/dlog.h b/inc/hf/dlog.h index 3e83624..01dddd9 100644 --- a/inc/hf/dlog.h +++ b/inc/hf/dlog.h
@@ -18,6 +18,8 @@ #include <stdarg.h> +#include "vm.h" + #if DEBUG void dlog_enable_lock(void); void dlog(const char *fmt, ...); @@ -27,3 +29,5 @@ #define dlog(...) #define vdlog(fmt, args) #endif + +void dlog_flush_vm_buffer(struct vm_locked vm);