diff options
| author | Damien Le Moal <[email protected]> | 2018-12-19 17:02:53 +0900 |
|---|---|---|
| committer | Damien Le Moal <[email protected]> | 2018-12-19 17:07:25 +0900 |
| commit | 91fc25f59b18342d6cc3ae69d6ccf2d8d303e1b2 (patch) | |
| tree | 84316adb7f1ac4cea12cef84c95b6225520d73b5 | |
| parent | 8a4088c3af85f6515c9b3e371bc6c1fae2a7e9dc (diff) | |
blob: Fix comment typos
Various typos fix.
Signed-off-by: Damien Le Moal <[email protected]>
| -rw-r--r-- | blob/fw_common.S | 2 | ||||
| -rw-r--r-- | blob/fw_jump.S | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/blob/fw_common.S b/blob/fw_common.S index 9cc2b092..7faa59a0 100644 --- a/blob/fw_common.S +++ b/blob/fw_common.S @@ -104,7 +104,7 @@ _start_warm: csrw mie, zero csrw mip, zero - /* HART ID should be withing expected limit */ + /* HART ID should be within expected limit */ csrr a6, mhartid li a5, PLAT_HART_COUNT bge a6, a5, _start_hang diff --git a/blob/fw_jump.S b/blob/fw_jump.S index 960e5945..d20eafd4 100644 --- a/blob/fw_jump.S +++ b/blob/fw_jump.S @@ -13,9 +13,9 @@ .section .entry, "ax", %progbits .global fw_next_arg1 fw_next_arg1: - /* We return FDT destinetion address in 'a0' */ + /* We return FDT destination address in 'a0' */ #ifdef FW_JUMP_FDT_OFFSET - /* a0 = destinetion FDT start address */ + /* a0 = destination FDT start address */ la a0, _jump_addr REG_L a0, (a0) li a1, FW_JUMP_FDT_OFFSET |
