summaryrefslogtreecommitdiff
path: root/drivers/gpu/msm/Makefile
diff options
context:
space:
mode:
authorJordan Crouse <jcrouse@codeaurora.org>2016-02-25 09:16:25 -0700
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-22 11:15:52 -0700
commit56930b9f1730d6cdaf59da6000cfe0ca71f90f15 (patch)
tree632046dee775a570ea6391474d6aba9492631104 /drivers/gpu/msm/Makefile
parent318be96313dcf3828b02937e5aae38e9f862acf3 (diff)
msm: kgsl: Update various exernal APIs for the 4.4 kernel
Make several changes to build the GPU driver for 4.4: - Rename CONFIG_MSM to CONFIG_QCOM where applicable - Add msm_kgsl.h to the Kbuild exports - Remove linux/coresight_of.h (as it has been merged into coresight.h) and remove the .owner member of the coresight_desc struct. - Use the new location for the sync.h file (in staging) - Remove an unused sync function - Move oneshot_sync.h inside of #ifdef wrappers Signed-off-by: Jordan Crouse <jcrouse@codeauorora.org>
Diffstat (limited to 'drivers/gpu/msm/Makefile')
-rw-r--r--drivers/gpu/msm/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/msm/Makefile b/drivers/gpu/msm/Makefile
index 9ee90751b944..d6ad9829d150 100644
--- a/drivers/gpu/msm/Makefile
+++ b/drivers/gpu/msm/Makefile
@@ -1,4 +1,4 @@
-ccflags-y := -Iinclude/uapi/drm -Iinclude/drm -Idrivers/gpu/msm
+ccflags-y := -Idrivers/staging/android
msm_kgsl_core-y = \
kgsl.o \
@@ -14,7 +14,7 @@ msm_kgsl_core-y = \
kgsl_events.o
msm_kgsl_core-$(CONFIG_DEBUG_FS) += kgsl_debugfs.o
-msm_kgsl_core-$(CONFIG_MSM_KGSL_CFF_DUMP) += kgsl_cffdump.o
+msm_kgsl_core-$(CONFIG_QCOM_KGSL_CFF_DUMP) += kgsl_cffdump.o
msm_kgsl_core-$(CONFIG_SYNC) += kgsl_sync.o
msm_kgsl_core-$(CONFIG_COMPAT) += kgsl_compat.o
@@ -44,5 +44,5 @@ msm_adreno-$(CONFIG_COMPAT) += adreno_compat.o
msm_kgsl_core-objs = $(msm_kgsl_core-y)
msm_adreno-objs = $(msm_adreno-y)
-obj-$(CONFIG_MSM_KGSL) += msm_kgsl_core.o
-obj-$(CONFIG_MSM_KGSL) += msm_adreno.o
+obj-$(CONFIG_QCOM_KGSL) += msm_kgsl_core.o
+obj-$(CONFIG_QCOM_KGSL) += msm_adreno.o