Remove unused klog_get_level.

Every little helps...

Bug: N/A
Test: builds
Change-Id: Ibcac5cda1619420c95903211ed0b96af81351f9e
This commit is contained in:
Elliott Hughes 2017-01-13 18:14:12 -08:00
parent 3052d123a8
commit e04c3b0533
2 changed files with 0 additions and 5 deletions

View File

@ -23,7 +23,6 @@
__BEGIN_DECLS
int klog_get_level(void);
void klog_set_level(int level);
void klog_write(int level, const char *fmt, ...)

View File

@ -29,10 +29,6 @@
static int klog_level = KLOG_INFO_LEVEL;
int klog_get_level(void) {
return klog_level;
}
void klog_set_level(int level) {
klog_level = level;
}