]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
test: fix comment indentation on tpm tests
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Thu, 1 Jun 2023 06:18:44 +0000 (09:18 +0300)
committerTom Rini <trini@konsulko.com>
Sat, 30 Sep 2023 19:15:31 +0000 (15:15 -0400)
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>
test/dm/tpm.c

index 3defb3c3da1ff379537214fa4e9b34ae94499da6..cde933ab28489467db46b55eb006d1f3f31e6760 100644 (file)
@@ -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;