Re: [PATCH] drm/amdkfd: fix typing in (*hqd_destroy)

2018-04-24 Thread Felix Kuehling
On 2018-04-24 09:14 AM, Luc Van Oostenryck wrote: > The method (*hqd_destroy) is defined as using an 'uint32_t' > as 3rd argument but the the actual implementation of this > method and all its calls actually uses an 'enum kfd_preempt_type' > for this argument. > > Fix this by using 'enum

Re: [PATCH] drm/amdkfd: fix typing in (*hqd_destroy)

2018-04-24 Thread Felix Kuehling
On 2018-04-24 09:14 AM, Luc Van Oostenryck wrote: > The method (*hqd_destroy) is defined as using an 'uint32_t' > as 3rd argument but the the actual implementation of this > method and all its calls actually uses an 'enum kfd_preempt_type' > for this argument. > > Fix this by using 'enum

[PATCH] drm/amdkfd: fix typing in (*hqd_destroy)

2018-04-24 Thread Luc Van Oostenryck
The method (*hqd_destroy) is defined as using an 'uint32_t' as 3rd argument but the the actual implementation of this method and all its calls actually uses an 'enum kfd_preempt_type' for this argument. Fix this by using 'enum kfd_preempt_type' for (*hqd_destroy) too. Signed-off-by: Luc Van

[PATCH] drm/amdkfd: fix typing in (*hqd_destroy)

2018-04-24 Thread Luc Van Oostenryck
The method (*hqd_destroy) is defined as using an 'uint32_t' as 3rd argument but the the actual implementation of this method and all its calls actually uses an 'enum kfd_preempt_type' for this argument. Fix this by using 'enum kfd_preempt_type' for (*hqd_destroy) too. Signed-off-by: Luc Van