diff options
author | Ben Goz <ben.goz@amd.com> | 2014-07-17 01:18:51 +0400 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@amd.com> | 2014-07-17 01:18:51 +0400 |
commit | ed8aab4594e0c5054b25b4a8810901ccf70efdcf (patch) | |
tree | 6aa45d020d96588a7621167ca64f6c2372c9e5f6 /drivers/gpu/drm/amd/amdkfd/Makefile | |
parent | b17f068a09fbe9b193a18080ff8ad5114a900124 (diff) | |
download | linux-ed8aab4594e0c5054b25b4a8810901ccf70efdcf.tar.xz |
amdkfd: Add queue module
The queue module enables allocating and initializing queues uniformly.
v3: Removed typedef and redundant memset call. Broke long pr_debug print to one
liners and Added documentation.
v5: Move amdkfd from drm/radeon/ to drm/amd/
Signed-off-by: Ben Goz <ben.goz@amd.com>
Signed-off-by: Oded Gabbay <oded.gabbay@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdkfd/Makefile')
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/Makefile b/drivers/gpu/drm/amd/amdkfd/Makefile index e829a3fa7d8e..42df022a0912 100644 --- a/drivers/gpu/drm/amd/amdkfd/Makefile +++ b/drivers/gpu/drm/amd/amdkfd/Makefile @@ -6,6 +6,6 @@ ccflags-y := -Iinclude/drm -Idrivers/gpu/drm/amd/include/ amdkfd-y := kfd_module.o kfd_device.o kfd_chardev.o kfd_topology.o \ kfd_pasid.o kfd_doorbell.o kfd_flat_memory.o \ - kfd_process.o + kfd_process.o kfd_queue.o obj-$(CONFIG_HSA_AMD) += amdkfd.o |