From: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Date: Thu, 1 Jun 2023 06:18:44 +0000 (+0300)
Subject: test: fix comment indentation on tpm tests
X-Git-Tag: v2025.01-rc5-pxa1908~847^2~1^2~3
X-Git-Url: http://git.dujemihanovic.xyz/projects?a=commitdiff_plain;h=aee56c035cfc843a0a98bf3bd1b7fed1a739c37f;p=u-boot.git

test: fix comment indentation on tpm tests

One out comments is off by one, adjust it

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

diff --git a/test/dm/tpm.c b/test/dm/tpm.c
index 3defb3c3da..cde933ab28 100644
--- a/test/dm/tpm.c
+++ b/test/dm/tpm.c
@@ -98,10 +98,11 @@ static int test_tpm_autostart(struct unit_test_state *uts,
 
 	if (reinit)
 		ut_assertok(tpm_init(dev));
-	 /*
-	  * tpm_auto_start will rerun tpm_init() if reinit, but handles the
-	  * -EBUSY return code internally.
-	  */
+
+	/*
+	 * tpm_auto_start will rerun tpm_init() if reinit, but handles the
+	 * -EBUSY return code internally.
+	 */
 	ut_assertok(tpm_auto_start(dev));
 
 	return 0;