From e0b15f4dbc6133bf7ad10b66bc10221b26fb3402 Mon Sep 17 00:00:00 2001 From: Jeykumar Sankaran Date: Sun, 3 May 2020 11:24:51 -0700 Subject: [PATCH] disp: fix compilation issue with trusted VM config This is temporary change to avoid compilation issues on genericarmv8 recipe. This will be reverted once the display support is added for the recipe. Change-Id: I805cf0b98ed77d9d4af72422a2a5b2533658ab73 Signed-off-by: Jeykumar Sankaran --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b3001ade0dee6..55b24b1db8dba 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ ifeq ($(CONFIG_ARCH_KONA), y) LINUXINCLUDE += -include $(srctree)/techpack/display/config/konadispconf.h endif +ifneq ($(CONFIG_ARCH_QTI_VM), y) ifeq ($(CONFIG_ARCH_LAHAINA), y) ifeq ($(CONFIG_QGKI), y) include $(srctree)/techpack/display/config/lahainadisp.conf @@ -18,6 +19,7 @@ LINUXINCLUDE += -include $(srctree)/techpack/display/config/lahainadispconf.h LINUXINCLUDE += -include $(srctree)/techpack/display/config/gki_lahainadispconf.h endif endif +endif LINUXINCLUDE += \ -I$(srctree)/techpack/display/include/uapi/display \