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>
7 lines
311 B
Makefile
7 lines
311 B
Makefile
# drm/tegra depends on host1x, so if both drivers are built-in care must be
|
|
# taken to initialize them in the correct order. Link order is the only way
|
|
# to ensure this currently.
|
|
obj-$(CONFIG_TEGRA_HOST1X) += host1x/
|
|
obj-y += drm/ vga/
|
|
obj-$(CONFIG_IMX_IPUV3_CORE) += ipu-v3/
|
|
obj-$(CONFIG_QCOM_KGSL) += msm/
|