diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2019-10-09 11:35:57 +1100 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-10-09 12:04:48 -0500 |
commit | 1cd4d9eead73c004d08a58536dc726bd172eaaec (patch) | |
tree | d8d9b0f52d677774aca19a4be9f1c073a898ff49 | |
parent | 6b855f7b83d2fb0237263f143437aedf8caed152 (diff) | |
download | linux-1cd4d9eead73c004d08a58536dc726bd172eaaec.tar.bz2 |
drm/amdkfd: update for drmP.h removal
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/kfd_priv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_priv.h b/drivers/gpu/drm/amd/amdkfd/kfd_priv.h index 337a8c042b43..ab899747cb64 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_priv.h +++ b/drivers/gpu/drm/amd/amdkfd/kfd_priv.h @@ -37,7 +37,9 @@ #include <linux/kref.h> #include <linux/sysfs.h> #include <linux/device_cgroup.h> -#include <drm/drmP.h> +#include <drm/drm_file.h> +#include <drm/drm_drv.h> +#include <drm/drm_device.h> #include <kgd_kfd_interface.h> #include "amd_shared.h" @@ -49,8 +51,6 @@ /* GPU ID hash width in bits */ #define KFD_GPU_ID_HASH_WIDTH 16 -struct drm_device; - /* Use upper bits of mmap offset to store KFD driver specific information. * BITS[63:62] - Encode MMAP type * BITS[61:46] - Encode gpu_id. To identify to which GPU the offset belongs to |