This driver references IO macros while relying on an indirection inclusion of <asm/io.h>. Add the missing include directly.
Signed-off-by: Tom Rini <tr...@konsulko.com> --- drivers/video/ihs_video_out.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/ihs_video_out.c b/drivers/video/ihs_video_out.c index bf4d4995c36c..e2130274b491 100644 --- a/drivers/video/ihs_video_out.c +++ b/drivers/video/ihs_video_out.c @@ -15,6 +15,7 @@ #include <regmap.h> #include <video_osd.h> #include <asm/gpio.h> +#include <asm/io.h> static const uint MAX_X_CHARS = 53; static const uint MAX_Y_CHARS = 26; -- 2.43.0