Pre-commit fixes.
Resolve codespell and EOF errors found in the pre-commit CI task.
This commit is contained in:
@@ -103,7 +103,7 @@ uint32_t board_button_read(void) {
|
||||
|
||||
size_t board_get_unique_id(uint8_t id[], size_t max_len) {
|
||||
uint8_t hw_id[MXC_SYS_USN_CHECKSUM_LEN];//USN Buffer
|
||||
/* All other 2nd parameter is optional checkum buffer */
|
||||
/* All other 2nd parameter is optional checksum buffer */
|
||||
MXC_SYS_GetUSN(hw_id, NULL);
|
||||
|
||||
size_t act_len = TU_MIN(max_len, MXC_SYS_USN_LEN);
|
||||
|
@@ -127,7 +127,7 @@ SECTIONS {
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_bss = .;
|
||||
*(.bss*) /*read-write zero initialized data: uninitialzed global variable*/
|
||||
*(.bss*) /*read-write zero initialized data: uninitialized global variable*/
|
||||
*(COMMON)
|
||||
_ebss = ALIGN(., 4);
|
||||
} > SRAM
|
||||
@@ -138,7 +138,7 @@ SECTIONS {
|
||||
_shared = .;
|
||||
*(.mailbox*)
|
||||
. = ALIGN(4);
|
||||
*(.shared*) /*read-write zero initialized data: uninitialzed global variable*/
|
||||
*(.shared*) /*read-write zero initialized data: uninitialized global variable*/
|
||||
_eshared = ALIGN(., 4);
|
||||
} > SRAM
|
||||
__shared_data = LOADADDR(.shared);
|
||||
|
Reference in New Issue
Block a user