From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Wed, 25 Sep 2019 08:55:57 -0600 Subject: [U-Boot] [PATCH 013/126] dm: test: Correct a stray backslash in dm_test_destroy() In-Reply-To: <20190925145750.200592-1-sjg@chromium.org> References: <20190925145750.200592-1-sjg@chromium.org> Message-ID: <20190925145750.200592-14-sjg@chromium.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This should perhaps be a period but it is not necessary. Remove it. Signed-off-by: Simon Glass --- test/dm/test-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dm/test-main.c b/test/dm/test-main.c index 74f77ccc849..c944ab9c5f2 100644 --- a/test/dm/test-main.c +++ b/test/dm/test-main.c @@ -64,7 +64,7 @@ static int dm_test_destroy(struct unit_test_state *uts) /* * If the uclass doesn't exist we don't want to create it. So - * check that here before we call uclass_find_device()/ + * check that here before we call uclass_find_device() */ uc = uclass_find(id); if (!uc) -- 2.23.0.444.g18eeb5a265-goog