spl: nand: typo 'destintion'
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Wed, 5 Nov 2025 00:21:44 +0000 (01:21 +0100)
committerMichael Trimarchi <michael@amarulasolutions.com>
Tue, 18 Nov 2025 19:07:41 +0000 (20:07 +0100)
%s/destintion/destination/

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
common/spl/spl_nand.c

index 032f246..f449b31 100644 (file)
@@ -111,7 +111,7 @@ static int spl_nand_load_image_os(struct spl_image_info *spl_image,
        int *src, *dst;
        nand_spl_load_image(CONFIG_CMD_SPL_NAND_OFS, CONFIG_CMD_SPL_WRITE_SIZE,
                            (void *)CONFIG_TEXT_BASE);
-       /* copy to destintion */
+       /* copy to destination */
        for (dst = (int *)CONFIG_SPL_PAYLOAD_ARGS_ADDR,
            src = (int *)CONFIG_TEXT_BASE;
             src < (int *)(CONFIG_TEXT_BASE + CONFIG_CMD_SPL_WRITE_SIZE);