[PATCH] drm/amdkfd: Fix a building error when KFD_SUPPORT_IOMMU_V2 is turned off

Kuehling, Felix Felix.Kuehling at amd.com
Thu Sep 5 15:03:46 UTC 2019


On 2019-09-05 11:01, Zhao, Yong wrote:
> The issue was accidentally introduced recently.
>
> Change-Id: I3b21caa1596d4f7de1866bed1cb5d8fe1b51504c
> Signed-off-by: Yong Zhao <Yong.Zhao at amd.com>

Reviewed-by: Felix Kuehling <Felix.Kuehling at amd.com>


> ---
>   drivers/gpu/drm/amd/amdkfd/kfd_device.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_device.c b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> index 267eb2e01bec..21f5c597e699 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_device.c
> @@ -371,11 +371,14 @@ static const struct kfd_device_info navi10_device_info = {
>   
>   /* For each entry, [0] is regular and [1] is virtualisation device. */
>   static const struct kfd_device_info *kfd_supported_devices[][2] = {
> +#ifdef KFD_SUPPORT_IOMMU_V2
>   	[CHIP_KAVERI] = {&kaveri_device_info, NULL},
> +	[CHIP_CARRIZO] = {&carrizo_device_info, NULL},
> +	[CHIP_RAVEN] = {&raven_device_info, NULL},
> +#endif
>   	[CHIP_HAWAII] = {&hawaii_device_info, NULL},
>   	[CHIP_TONGA] = {&tonga_device_info, NULL},
>   	[CHIP_FIJI] = {&fiji_device_info, &fiji_vf_device_info},
> -	[CHIP_CARRIZO] = {&carrizo_device_info, NULL},
>   	[CHIP_POLARIS10] = {&polaris10_device_info, &polaris10_vf_device_info},
>   	[CHIP_POLARIS11] = {&polaris11_device_info, NULL},
>   	[CHIP_POLARIS12] = {&polaris12_device_info, NULL},
> @@ -383,7 +386,6 @@ static const struct kfd_device_info *kfd_supported_devices[][2] = {
>   	[CHIP_VEGA10] = {&vega10_device_info, &vega10_vf_device_info},
>   	[CHIP_VEGA12] = {&vega12_device_info, NULL},
>   	[CHIP_VEGA20] = {&vega20_device_info, NULL},
> -	[CHIP_RAVEN] = {&raven_device_info, NULL},
>   	[CHIP_ARCTURUS] = {&arcturus_device_info, &arcturus_device_info},
>   	[CHIP_NAVI10] = {&navi10_device_info, NULL},
>   };


More information about the amd-gfx mailing list