From: Arnd Bergmann Date: Tue, 26 Oct 2021 08:32:41 +0000 (+0200) Subject: drm/msm/dp: fix missing #include X-Git-Tag: v6.1-rc5~2647^2~10^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02d44fde976a8e9330f855fc535180727c779b9b;p=platform%2Fkernel%2Flinux-starfive.git drm/msm/dp: fix missing #include Some randconfig builds fail when drm/drm_bridge.h is not included implicitly in this file: drivers/gpu/drm/msm/dp/dp_parser.c:279:25: error: implicit declaration of function 'devm_drm_panel_bridge_add' [-Werror,-Wimplicit-function-declaration] parser->panel_bridge = devm_drm_panel_bridge_add(dev, panel); Fixes: 4b296d15b355 ("drm/msm/dp: Allow attaching a drm_panel") Signed-off-by: Arnd Bergmann Link: https://lore.kernel.org/r/20211026083254.3396322-1-arnd@kernel.org Signed-off-by: Rob Clark --- diff --git a/drivers/gpu/drm/msm/dp/dp_parser.c b/drivers/gpu/drm/msm/dp/dp_parser.c index 81dbcc86d08a..a7acc23f742b 100644 --- a/drivers/gpu/drm/msm/dp/dp_parser.c +++ b/drivers/gpu/drm/msm/dp/dp_parser.c @@ -8,6 +8,7 @@ #include #include +#include #include "dp_parser.h" #include "dp_reg.h"