Skip to content
Merged
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
4 changes: 4 additions & 0 deletions components/drivers/hwcrypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,7 @@ menuconfig RT_USING_HWCRYPTO
default n
endif
endif

if RT_USING_DM && RT_USING_HWCRYPTO
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The SOC_DM_HWCRYPTO_DIR variable is referenced but not documented. Consider adding a comment explaining where this variable should be defined and what it should contain, to help BSP developers who need to integrate DM hardware crypto support.

Suggested change
if RT_USING_DM && RT_USING_HWCRYPTO
if RT_USING_DM && RT_USING_HWCRYPTO
# SOC_DM_HWCRYPTO_DIR should be defined in your BSP's Kconfig or build system.
# It must contain the path to the directory with the DM hardware crypto Kconfig file.
# Example: set SOC_DM_HWCRYPTO_DIR to "bsp/your_board/drivers/dm_hwcrypto"

Copilot uses AI. Check for mistakes.
osource "$(SOC_DM_HWCRYPTO_DIR)/Kconfig"
endif
Loading