test/dm: fdtdec: Corect a typo in dm_test_fdtdec_set_carveout()
authorBin Meng <bin.meng@windriver.com>
Tue, 23 Jun 2020 05:55:48 +0000 (22:55 -0700)
committerSimon Glass <sjg@chromium.org>
Fri, 10 Jul 2020 00:57:22 +0000 (18:57 -0600)
It should be "writable".

Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
test/dm/fdtdec.c

index c2f7b94..999d712 100644 (file)
@@ -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;