From 0f4869e93e52f527076e97645ace0fea3fae063a Mon Sep 17 00:00:00 2001 From: Todd Kjos Date: Wed, 4 Nov 2020 13:23:08 -0800 Subject: [PATCH] ANDROID: fix kernelci build-break due to stop_ipi hook Fix build-break for non GKI builds caused by using the _rcuidle() variant of a vendor hook. Fixes: 56da24e7a9ba ("ANDROID: vendor_hooks: Add vendor hooks for getting printk messages") Signed-off-by: Todd Kjos Change-Id: I0dffaf7e0df198a63578818f7c155671efe382b5 --- include/trace/hooks/debug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/trace/hooks/debug.h b/include/trace/hooks/debug.h index 12ce5cf5e9a8..ac006d7fdd0a 100644 --- a/include/trace/hooks/debug.h +++ b/include/trace/hooks/debug.h @@ -18,6 +18,7 @@ DECLARE_HOOK(android_vh_ipi_stop, TP_ARGS(regs)) #else #define trace_android_vh_ipi_stop(regs) +#define trace_android_vh_ipi_stop_rcuidle(regs) #endif #endif /* _TRACE_HOOK_DEBUG_H */