diff options
| author | Tom Rini <[email protected]> | 2025-09-25 14:45:35 -0600 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2025-10-28 11:27:43 +0200 |
| commit | 9ce9f66b76c15eaa5c475c56f50490e141fa2412 (patch) | |
| tree | f416d409721ded37ed56d14f8d3cd8ab80909edc /drivers/crypto | |
| parent | e50f80d137b4b4bf80d3d208b7651579372aa2aa (diff) | |
crypto: tegra: Tighten TEGRA_AES driver dependency
This driver relies on tegra-specific headers to compile so make it
depend on ARCH_TEGRA.
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'drivers/crypto')
| -rw-r--r-- | drivers/crypto/tegra/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/tegra/Kconfig b/drivers/crypto/tegra/Kconfig index b027609307b..0f2acaaade1 100644 --- a/drivers/crypto/tegra/Kconfig +++ b/drivers/crypto/tegra/Kconfig @@ -1,6 +1,6 @@ config TEGRA_AES bool "Support the Tegra AES" - depends on DM_AES + depends on ARCH_TEGRA && DM_AES help This provides a means to encrypt and decrypt data using the Tegra Bit Stream Engine for Video/Audio. Also may provide a mean to |
