diff options
author | Jammy Zhou <Jammy.Zhou@amd.com> | 2015-11-24 16:55:20 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2015-12-02 12:45:56 -0500 |
commit | 288912cb95d156ad9fbb626b0b05d714c2ec8c8e (patch) | |
tree | bf0c0dd53eaf10076c0577102c591fcd61dcff15 /drivers/gpu | |
parent | dbb17a21c131eca94eb31136eee9a7fe5aff00d9 (diff) | |
download | kernel_replicant_linux-288912cb95d156ad9fbb626b0b05d714c2ec8c8e.tar.gz kernel_replicant_linux-288912cb95d156ad9fbb626b0b05d714c2ec8c8e.tar.bz2 kernel_replicant_linux-288912cb95d156ad9fbb626b0b05d714c2ec8c8e.zip |
drm/amdgpu: use $(src) in Makefile (v2)
This can solve the path problem when compile amdgpu with DKMS.
v2: agd: rebase on current drm-next
Signed-off-by: Jammy Zhou <Jammy.Zhou@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/Makefile b/drivers/gpu/drm/amd/amdgpu/Makefile index 04c270757030..a5c3aa0de773 100644 --- a/drivers/gpu/drm/amd/amdgpu/Makefile +++ b/drivers/gpu/drm/amd/amdgpu/Makefile @@ -2,10 +2,12 @@ # Makefile for the drm device driver. This driver provides support for the # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. -ccflags-y := -Iinclude/drm -Idrivers/gpu/drm/amd/include/asic_reg \ - -Idrivers/gpu/drm/amd/include \ - -Idrivers/gpu/drm/amd/amdgpu \ - -Idrivers/gpu/drm/amd/scheduler +FULL_AMD_PATH=$(src)/.. + +ccflags-y := -Iinclude/drm -I$(FULL_AMD_PATH)/include/asic_reg \ + -I$(FULL_AMD_PATH)/include \ + -I$(FULL_AMD_PATH)/amdgpu \ + -I$(FULL_AMD_PATH)/scheduler amdgpu-y := amdgpu_drv.o |