diff mbox series

[master] u-boot: Fix indentation in do_deploy SPL binary block

Message ID 20260330152914.4155774-1-sandeep.gundlupet-raju@amd.com
State Under Review
Headers show
Series [master] u-boot: Fix indentation in do_deploy SPL binary block | expand

Commit Message

Sandeep Gundlupet Raju March 30, 2026, 3:29 p.m. UTC
Normalize leading whitespace on the 'if [ -n "${SPL_BINARY}" ]' and
matching 'then' lines in do_deploy to be consistent with the surrounding
code. Spaces-only change, no logic change.

Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
---
 meta/recipes-bsp/u-boot/u-boot.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 01137cb495..a75948dfc3 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -337,8 +337,8 @@  do_deploy () {
         fi
     fi
 
-     if [ -n "${SPL_BINARY}" ]
-     then
+    if [ -n "${SPL_BINARY}" ]
+    then
         if [ -n "${UBOOT_CONFIG}" ]
         then
             for config in ${UBOOT_MACHINE}; do