From: Heinrich Schuchardt Date: Wed, 5 Nov 2025 00:21:44 +0000 (+0100) Subject: spl: nand: typo 'destintion' X-Git-Tag: v2026.01-rc3~8^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd763a44830d4e08f03f957a5107473b209a3509;p=thirdparty%2Fu-boot.git spl: nand: typo 'destintion' %s/destintion/destination/ Signed-off-by: Heinrich Schuchardt Reviewed-by: Bin Meng --- diff --git a/common/spl/spl_nand.c b/common/spl/spl_nand.c index 032f2466278..f449b31f594 100644 --- a/common/spl/spl_nand.c +++ b/common/spl/spl_nand.c @@ -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);