From 819d265266683050e4474054d0c0b89c9370ce7c Mon Sep 17 00:00:00 2001 From: Tarun Karela Date: Mon, 28 May 2018 16:57:20 +0100 Subject: [PATCH] [9610] wlbt: Fix compilaton error in scsc_logring (Android P) drivers/misc/samsung/scsc/scsc_logring_ring.c: In function 'tag_writer_string': drivers/misc/samsung/scsc/scsc_logring_ring.c:328:2: error: implicit declaration of function 'local_clock' [-Werror=implicit-function-declaration] SCSC_FILL_RING_RECORD(rrec, tag, lev); Change-Id: I8f73d42026283866c4c3276756251ba21bd44b6c SCSC-Bug-Id: SSB-40175 Signed-off-by: Tarun Karela --- include/scsc/scsc_logring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/scsc/scsc_logring.h b/include/scsc/scsc_logring.h index 961fa9d0ff6f..e9054bf337e6 100644 --- a/include/scsc/scsc_logring.h +++ b/include/scsc/scsc_logring.h @@ -11,6 +11,7 @@ #include #include #include +#include /* NOTE_CREATING_TAGS: when adding a tag here REMEMBER to add it also * where required, taking care to maintain the same ordering. -- 2.20.1