aboutsummaryrefslogtreecommitdiff
path: root/test/dm
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2023-06-01 09:18:44 +0300
committerTom Rini <trini@konsulko.com>2023-09-30 15:15:31 -0400
commitaee56c035cfc843a0a98bf3bd1b7fed1a739c37f (patch)
tree26ac5309cf91b7c70599308938557f6ae722a468 /test/dm
parent90c81f407dd4a7747385b10f9b8f732202c45cde (diff)
downloadu-boot-aee56c035cfc843a0a98bf3bd1b7fed1a739c37f.zip
u-boot-aee56c035cfc843a0a98bf3bd1b7fed1a739c37f.tar.gz
u-boot-aee56c035cfc843a0a98bf3bd1b7fed1a739c37f.tar.bz2
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>
Diffstat (limited to 'test/dm')
-rw-r--r--test/dm/tpm.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/dm/tpm.c b/test/dm/tpm.c
index 3defb3c..cde933a 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;