Re: [PATCH] drm/msm: include linux/sched/task.h

2019-09-19 Thread Jordan Crouse
On Wed, Sep 18, 2019 at 09:57:07PM +0200, Arnd Bergmann wrote: > Without this header file, compile-testing may run into a missing > declaration: > > drivers/gpu/drm/msm/msm_gpu.c:444:4: error: implicit declaration of function > 'put_task_struct' [-Werror,-Wimplicit-function-declaration] > > Fixe

[PATCH] drm/msm: include linux/sched/task.h

2019-09-18 Thread Arnd Bergmann
Without this header file, compile-testing may run into a missing declaration: drivers/gpu/drm/msm/msm_gpu.c:444:4: error: implicit declaration of function 'put_task_struct' [-Werror,-Wimplicit-function-declaration] Fixes: 482f96324a4e ("drm/msm: Fix task dump in gpu recovery") Signed-off-by: Arn