Skip to content

Commit e682596

Browse files
committed
[libcpu][arm][cortex-a] beautify comment for start_gcc.S
1 parent fd27ee8 commit e682596

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

libcpu/arm/cortex-a/start_gcc.S

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@
2828
.equ F_Bit, 0x40 /* when F bit is set, FIQ is disabled */
2929

3030
/**
31-
* @brief get the physical address of the symbol
31+
* @brief Get the physical address of the symbol
3232
*
33-
* @param reg register to store the physical address
34-
* @param symbol symbol name
35-
* @param _pvoff the offset between the physical address and the virtual address
33+
* @param reg is the register to store the physical address
34+
* @param symbol is symbol name
35+
* @param _pvoff is the offset between the physical address and the virtual address
3636
*/
3737
.macro get_phy, reg, symbol, _pvoff
3838
ldr \reg, =\symbol
3939
add \reg, \_pvoff
4040
.endm
4141

4242
/**
43-
* @brief calculate the offset between the physical address and the virtual address of the "_reset"
43+
* @brief Calculate the offset between the physical address and the virtual address of the "_reset"
4444
*
45-
* @param tmp register which will be used to store the virtual address of the "_reset"
46-
* @param out register which will be used to store the pv_off (paddr - vaddr)
45+
* @param tmp is the register which will be used to store the virtual address of the "_reset"
46+
* @param out is the register which will be used to store the pv_off (paddr - vaddr)
4747
*/
4848
.macro get_pvoff, tmp, out
4949
ldr \tmp, =_reset

0 commit comments

Comments
 (0)