diff options
author | Jani Nikula <jani.nikula@intel.com> | 2025-01-22 16:41:33 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2025-02-12 10:44:43 +0200 |
commit | 48ca4a1faafd1dbd5009bad9b32ee75e3b6317cc (patch) | |
tree | 345f1383dee2f7e9fc228e78cd10e45aafe4f0d8 | |
parent | f7d07bcd0651b90dda8a6962057eb5fb1807a089 (diff) |
drm/client: include types.h to make drm_client_event.h self-contained
drm_client_event.h uses bool without types.h, include it.
Fixes: bf17766f1083 ("drm/client: Move suspend/resume into DRM client callbacks")
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Simona Vetter <simona.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/6c69cb005cc3a2b968b6c9675d0ba03173f6c574.1737556766.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
-rw-r--r-- | include/drm/drm_client_event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm_client_event.h b/include/drm/drm_client_event.h index 99863554b055..1d544d3a3228 100644 --- a/include/drm/drm_client_event.h +++ b/include/drm/drm_client_event.h @@ -3,6 +3,8 @@ #ifndef _DRM_CLIENT_EVENT_H_ #define _DRM_CLIENT_EVENT_H_ +#include <linux/types.h> + struct drm_device; #if defined(CONFIG_DRM_CLIENT) |