Skip to content

Commit b5d6e6c

Browse files
committed
[nrf fromtree] boot: bootutil: loader: Fix some comments
Fixes some comments which had typos or were not formatted correctly Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no> (cherry picked from commit fecf7e8)
1 parent 61d971b commit b5d6e6c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

boot/bootutil/src/loader.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -809,8 +809,9 @@ boot_image_check(struct boot_loader_state *state, struct image_header *hdr,
809809
(void)bs;
810810
(void)rc;
811811

812-
/* In the case of ram loading the image has already been decrypted as it is
813-
* decrypted when copied in ram */
812+
/* In the case of ram loading the image has already been decrypted as it is
813+
* decrypted when copied in ram
814+
*/
814815
#if defined(MCUBOOT_ENC_IMAGES) && !defined(MCUBOOT_RAM_LOAD)
815816
if (MUST_DECRYPT(fap, BOOT_CURR_IMG(state), hdr)) {
816817
rc = boot_enc_load(BOOT_CURR_ENC(state), 1, hdr, fap, bs);
@@ -1664,7 +1665,7 @@ boot_copy_region(struct boot_loader_state *state,
16641665

16651666
#ifdef MCUBOOT_ENC_IMAGES
16661667
/* If only copy, then does not matter if header indicates need for
1667-
* encryptio/decryptio, we just copy data. */
1668+
* encryption/decryption, we just copy data. */
16681669
if (!only_copy && IS_ENCRYPTED(hdr)) {
16691670
uint32_t abs_off = off + bytes_copied;
16701671
if (abs_off < hdr->ih_hdr_size) {

0 commit comments

Comments
 (0)