| From 7e6a2d277d079f44e119fa25aa5d1980689345d7 Mon Sep 17 00:00:00 2001 |
| From: Arnd Bergmann <arnd@arndb.de> |
| Date: Wed, 18 Sep 2019 21:57:07 +0200 |
| Subject: [PATCH] drm/msm: include linux/sched/task.h |
| |
| commit 70082a52f96a45650dfc3d8cdcd2c42bdac9f6f0 upstream. |
| |
| 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: Arnd Bergmann <arnd@arndb.de> |
| Reviewed-by: Jordan Crouse <jcrouse@codeaurora.org> |
| Signed-off-by: Rob Clark <robdclark@chromium.org> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/gpu/drm/msm/msm_gpu.c b/drivers/gpu/drm/msm/msm_gpu.c |
| index b2a8411c2d84..ed4f89aeeca1 100644 |
| --- a/drivers/gpu/drm/msm/msm_gpu.c |
| +++ b/drivers/gpu/drm/msm/msm_gpu.c |
| @@ -16,6 +16,7 @@ |
| #include <linux/pm_opp.h> |
| #include <linux/devfreq.h> |
| #include <linux/devcoredump.h> |
| +#include <linux/sched/task.h> |
| |
| /* |
| * Power Management: |
| -- |
| 2.7.4 |
| |