diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2022-12-07 20:51:25 +0100 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2022-12-08 12:32:25 +0100 |
commit | c5738c861afc51856e8400e00a0ecd9ffa2633b8 (patch) | |
tree | 8491854f6a2537950f258618514178e0deadaf11 | |
parent | e373cdbe50b5ce636e4d0893a5a1b761c7a4a452 (diff) | |
download | linux-c5738c861afc51856e8400e00a0ecd9ffa2633b8.tar.gz |
drm/gud: Fix missing include
Add missing vmalloc.h include.
Fixes: c17d048609bf ("drm/gud: Use the shadow plane helper")
Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20221207-gud-missing-include-v1-0-c5b32c9c59da@tronnes.org
-rw-r--r-- | drivers/gpu/drm/gud/gud_pipe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/gud/gud_pipe.c b/drivers/gpu/drm/gud/gud_pipe.c index 62c43d3632d4..dc16a92625d4 100644 --- a/drivers/gpu/drm/gud/gud_pipe.c +++ b/drivers/gpu/drm/gud/gud_pipe.c @@ -5,6 +5,7 @@ #include <linux/lz4.h> #include <linux/usb.h> +#include <linux/vmalloc.h> #include <linux/workqueue.h> #include <drm/drm_atomic.h> |