From da3538d49ce4568701176ca3651272a5d99b1e4d Mon Sep 17 00:00:00 2001 From: Narendra Muppalla Date: Tue, 26 Mar 2019 14:13:21 -0700 Subject: [PATCH] Disp: add makefile support for display drivers This change adds dummy Makefile support to compile display driver project along with base kernel. Change-Id: I4fe15e2b358227911d3826e914ccb5eb45bb3d0d Signed-off-by: Narendra Muppalla --- Makefile | 3 +++ disp.c | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 Makefile create mode 100644 disp.c diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..e28ef833 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only +ccflags-y := -Wno-unused-function +obj-y := disp.o diff --git a/disp.c b/disp.c new file mode 100644 index 00000000..d34a125a --- /dev/null +++ b/disp.c @@ -0,0 +1,5 @@ +// SPDX-License-Identifier: GPL-2.0-only + +static void _disp_techpack_stub(void) +{ +}