diff options
author | Bin Meng <bin.meng@windriver.com> | 2020-06-22 22:55:48 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-09 18:57:22 -0600 |
commit | 866f11efd7afc1346ede57de053687acdaf9a4c1 (patch) | |
tree | 6c54388c00d29b74bb5e5eb3165558b911d608bc | |
parent | c9a1df027abb831af35db2810c1a4f45b13cee79 (diff) | |
download | u-boot-866f11efd7afc1346ede57de053687acdaf9a4c1.tar.gz |
test/dm: fdtdec: Corect a typo in dm_test_fdtdec_set_carveout()
It should be "writable".
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | test/dm/fdtdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dm/fdtdec.c b/test/dm/fdtdec.c index c2f7b94805..999d712109 100644 --- a/test/dm/fdtdec.c +++ b/test/dm/fdtdec.c @@ -22,7 +22,7 @@ static int dm_test_fdtdec_set_carveout(struct unit_test_state *uts) blob = malloc(blob_sz); ut_assertnonnull(blob); - /* Make a writtable copy of the fdt blob */ + /* Make a writable copy of the fdt blob */ ut_assertok(fdt_open_into(gd->fdt_blob, blob, blob_sz)); resv.start = 0x1000; |