diff options
author | Christian König <christian.koenig@amd.com> | 2013-08-13 05:56:54 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2013-08-30 16:30:42 -0400 |
commit | 2483b4ea982efe8a544697d3f9642932e9af4dc1 (patch) | |
tree | f739e1b55b5e200817c174d4eae6f22935d152bf /drivers/gpu/drm/radeon/Makefile | |
parent | e409b128625732926c112cc9b709fb7bb1aa387f (diff) |
drm/radeon: separate DMA code
Similar to separating the UVD code, just put the DMA
functions into separate files.
Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/Makefile')
-rw-r--r-- | drivers/gpu/drm/radeon/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/Makefile b/drivers/gpu/drm/radeon/Makefile index 1e23b18d549a..da2a8e9e9308 100644 --- a/drivers/gpu/drm/radeon/Makefile +++ b/drivers/gpu/drm/radeon/Makefile | |||
@@ -82,6 +82,15 @@ radeon-y += radeon_device.o radeon_asic.o radeon_kms.o \ | |||
82 | trinity_smc.o ni_dpm.o si_smc.o si_dpm.o kv_smc.o kv_dpm.o ci_smc.o \ | 82 | trinity_smc.o ni_dpm.o si_smc.o si_dpm.o kv_smc.o kv_dpm.o ci_smc.o \ |
83 | ci_dpm.o | 83 | ci_dpm.o |
84 | 84 | ||
85 | # add async DMA block | ||
86 | radeon-y += \ | ||
87 | r600_dma.o \ | ||
88 | rv770_dma.o \ | ||
89 | evergreen_dma.o \ | ||
90 | ni_dma.o \ | ||
91 | si_dma.o \ | ||
92 | cik_sdma.o \ | ||
93 | |||
85 | # add UVD block | 94 | # add UVD block |
86 | radeon-y += \ | 95 | radeon-y += \ |
87 | radeon_uvd.o \ | 96 | radeon_uvd.o \ |