diff mbox series

[v3,4/7] spl: Move TPL_HASH_SUPPORT down next to other TPL options

Message ID 20210711201855.v3.4.I011f9260d79a1df821dfeb28c7da19a51015fba9@changeid
State Changes Requested
Delegated to: Tom Rini
Headers show
Series vpl: Introduce a verifying program loader | expand

Commit Message

Simon Glass July 12, 2021, 2:19 a.m. UTC
This option should be next to other TPL options, not next to the SPL hash
option, so it matches the placement conventions in this file.

Move it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v1)

 common/spl/Kconfig | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)
diff mbox series

Patch

diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index fa80524cfb2..10384b835b2 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -519,17 +519,6 @@  config SPL_HASH_SUPPORT
 	  this option to build system-specific drivers for hash acceleration
 	  as part of an SPL build.
 
-config TPL_HASH_SUPPORT
-	bool "Support hashing drivers in TPL"
-	depends on TPL
-	select SHA1
-	select SHA256
-	help
-	  Enable hashing drivers in SPL. These drivers can be used to
-	  accelerate secure boot processing in secure applications. Enable
-	  this option to build system-specific drivers for hash acceleration
-	  as part of an SPL build.
-
 config SPL_DMA
 	bool "Support DMA drivers"
 	help
@@ -1491,6 +1480,17 @@  config TPL_GPIO_SUPPORT
 	  for example. Enable this option to build the drivers in
 	  drivers/gpio as part of an TPL build.
 
+config TPL_HASH_SUPPORT
+	bool "Support hashing drivers in TPL"
+	depends on TPL
+	select SHA1
+	select SHA256
+	help
+	  Enable hashing drivers in SPL. These drivers can be used to
+	  accelerate secure boot processing in secure applications. Enable
+	  this option to build system-specific drivers for hash acceleration
+	  as part of an SPL build.
+
 config TPL_I2C_SUPPORT
 	bool "Support I2C"
 	help