From bd763a44830d4e08f03f957a5107473b209a3509 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Wed, 5 Nov 2025 01:21:44 +0100 Subject: [PATCH] spl: nand: typo 'destintion' %s/destintion/destination/ Signed-off-by: Heinrich Schuchardt Reviewed-by: Bin Meng --- common/spl/spl_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3