summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-06-20 14:05:15 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-06-26 02:39:34 +0000
commitc9e039c1b39509cf301dc38947db021f0243c817 (patch)
treed66127ce6390fc80307edd69502ec3d53c63b20c
parent8de992c441e36453a5a08bcf7c2462835007f81e (diff)
downloadvboot-c9e039c1b39509cf301dc38947db021f0243c817.tar.gz
Remove nonexistant functions from tlcl.h
The functions TlclLog() and TlclSetLogLevel() are declared in tlcl.h, but do not appear anywhere else in the source. Let's not declare nonexistant functions. BUG=chromium:231567 BRANCH=ToT TEST=make runtests These never existed or did anything. They still don't. Change-Id: Id6f0216d70b7b62d91486aba7d6cd996dc5f7d8d Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/205708 Reviewed-by: Luigi Semenzato <semenzato@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--firmware/include/tlcl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/firmware/include/tlcl.h b/firmware/include/tlcl.h
index a71136b6..53731200 100644
--- a/firmware/include/tlcl.h
+++ b/firmware/include/tlcl.h
@@ -28,16 +28,6 @@ uint32_t TlclLibInit(void);
*/
uint32_t TlclLibClose(void);
-/**
- * Log to stdout. Arguments like printf.
- */
-void TlclLog(char *format, ...);
-
-/**
- * Set the log level. 0 is quietest.
- */
-void TlclSetLogLevel(int level);
-
/* Low-level operations */
/**