From 42f54973b2318f271bbecbf6b5fc82edd1d71366 Mon Sep 17 00:00:00 2001 From: Josuah Demangeon Date: Mon, 7 Jul 2025 13:07:18 +0000 Subject: [PATCH] drivers: video: stm32_dcmipp: move video/ header directory to drivers/ During #89407 a driver-specific header stm32_dcmipp.h got introduced to support new functionnalities not yet covered by video APIs. Move this header into a new include direcctory like what other driver classes do. Signed-off-by: Josuah Demangeon --- drivers/video/video_stm32_dcmipp.c | 2 +- include/zephyr/{ => drivers}/video/stm32_dcmipp.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename include/zephyr/{ => drivers}/video/stm32_dcmipp.h (100%) diff --git a/drivers/video/video_stm32_dcmipp.c b/drivers/video/video_stm32_dcmipp.c index 13ae21a601045..a7c182a89e22d 100644 --- a/drivers/video/video_stm32_dcmipp.c +++ b/drivers/video/video_stm32_dcmipp.c @@ -16,7 +16,7 @@ #include #include #include -#include +#include #include "video_ctrls.h" #include "video_device.h" diff --git a/include/zephyr/video/stm32_dcmipp.h b/include/zephyr/drivers/video/stm32_dcmipp.h similarity index 100% rename from include/zephyr/video/stm32_dcmipp.h rename to include/zephyr/drivers/video/stm32_dcmipp.h