diff options
author | Simon Glass <sjg@chromium.org> | 2019-09-25 08:55:57 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-10-08 13:57:39 +0800 |
commit | 22327003a9d23c25044ce411e2daa992c835763c (patch) | |
tree | 7d7ee2181c49323053d854b2a5abf4e39bf12b0b /test | |
parent | e5f739045890eef2e97488c9c2a7d036ab908e58 (diff) | |
download | u-boot-22327003a9d23c25044ce411e2daa992c835763c.tar.gz u-boot-22327003a9d23c25044ce411e2daa992c835763c.tar.bz2 u-boot-22327003a9d23c25044ce411e2daa992c835763c.zip |
dm: test: Correct a stray backslash in dm_test_destroy()
This should perhaps be a period.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: add the ending period and reword the commit message]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/test-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/test-main.c b/test/dm/test-main.c index 74f77ccc84..72648162a9 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) |