diff options
| author | Tom Rini <[email protected]> | 2025-11-12 14:00:06 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-30 10:21:48 -0600 |
| commit | 082e5118dab3a23c3d61ed429ad03195efe57653 (patch) | |
| tree | 40627e4add8c313faba625193b541b0e97feae7f /drivers | |
| parent | e1bcce1dbbb13a7ec1e8f02e8ce27fad8c550f23 (diff) | |
video: ihs_video_out: Add missing <asm/io.h> to ihs_video_out.c
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 <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/ihs_video_out.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/ihs_video_out.c b/drivers/video/ihs_video_out.c index bf4d4995c36..e2130274b49 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; |
