From: Sam Ravnborg Date: Sun, 30 Jun 2019 06:19:19 +0000 (+0200) Subject: drm: add missing include to drm_vram_mm_helper.h X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=322d0c84d30e722fb46c2a85956a57a429673c0d;p=openwrt%2Fstaging%2Fblogic.git drm: add missing include to drm_vram_mm_helper.h The macro DRM_VRAM_MM_FILE_OPERATIONS referencs functions declared in other header files. Include these header files so this header files pulls in what it references. Signed-off-by: Sam Ravnborg Reviewed-by: Daniel Vetter Acked-by: Emil Velikov Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Sean Paul Cc: David Airlie Link: https://patchwork.freedesktop.org/patch/msgid/20190630061922.7254-31-sam@ravnborg.org --- diff --git a/include/drm/drm_vram_mm_helper.h b/include/drm/drm_vram_mm_helper.h index a8ffd8599b08..2aacfb1ccfae 100644 --- a/include/drm/drm_vram_mm_helper.h +++ b/include/drm/drm_vram_mm_helper.h @@ -3,6 +3,8 @@ #ifndef DRM_VRAM_MM_HELPER_H #define DRM_VRAM_MM_HELPER_H +#include +#include #include struct drm_device;