diff options
| author | Tom Rini <[email protected]> | 2025-11-12 14:00:08 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-30 10:21:49 -0600 |
| commit | b6f78b815af652cf7ce47db48f93d6283cad4c5b (patch) | |
| tree | 59f229d1443a087ae1936045aa278e9ba47e65e8 /drivers/video | |
| parent | 5d3af86ae16f1207e1b38b00fccb5d01965cc778 (diff) | |
video: stm32: stm32_ltdc: Add missing <linux/sizes.h> to stm32_ltdc.c
This driver references the SZ_ macros while relying on an indirection
inclusion of <linux/sizes.h>. Add the missing include directly.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/video')
| -rw-r--r-- | drivers/video/stm32/stm32_ltdc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/stm32/stm32_ltdc.c b/drivers/video/stm32/stm32_ltdc.c index 0a062c8939d..1281acaaade 100644 --- a/drivers/video/stm32/stm32_ltdc.c +++ b/drivers/video/stm32/stm32_ltdc.c @@ -20,6 +20,7 @@ #include <dm/device_compat.h> #include <linux/bitops.h> #include <linux/printk.h> +#include <linux/sizes.h> struct stm32_ltdc_priv { void __iomem *regs; |
