Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/releases/migration-guide-4.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ Networking
code cannot use POSIX APIs, then the relevant network API prefix needs to be added to the
code calling a network API.

Video
*****

* ``CONFIG_VIDEO_HIMAX_HM01B0`` has been renamed into :kconfig:option:`CONFIG_VIDEO_HM01B0`.

Other subsystems
****************

Expand Down
2 changes: 1 addition & 1 deletion drivers/video/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_EMUL_IMAGER video_emul_imager.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_EMUL_RX video_emul_rx.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_ESP32 video_esp32_dvp.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_GC2145 gc2145.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_HIMAX_HM01B0 hm01b0.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_HM01B0 hm01b0.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_HM0360 hm0360.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_CSI video_mcux_csi.c)
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/Kconfig.hm01b0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright The Zephyr Project Contributors
# SPDX-License-Identifier: Apache-2.0
config VIDEO_HIMAX_HM01B0
config VIDEO_HM01B0
bool "Real-time monochrome camera Himax HM01B0 sensor"
depends on DT_HAS_HIMAX_HM01B0_ENABLED
select I2C
Expand Down
Loading