Attention is currently required from: Hoernchen.
Jenkins Builder has posted comments on this change by Hoernchen. ( https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434?usp=email )
Change subject: bl updater app ......................................................................
Patch Set 4:
(19 comments)
File usb_dfu_main.c:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/8c50954c_94d4aa83... : PS4, Line 44: while (!NVMCTRL->STATUS.bit.READY) {} please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/be716502_7e5db9e6... : PS4, Line 48: while (!NVMCTRL->STATUS.bit.READY) {} please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/99310423_6a5dbf33... : PS4, Line 51: volatile uint32_t *src = (uint32_t *)data; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/8cc916a7_bfddaf1e... : PS4, Line 53: for (uint32_t i = 0; i < (NVMCTRL_PAGE_SIZE / sizeof(uint32_t)); i++) { please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/737d5a27_2684ee40... : PS4, Line 54: dst[i] = src[i]; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/3c057103_de0b9234... : PS4, Line 55: } please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/20a37da3_32e14081... : PS4, Line 57: NVMCTRL->ADDR.reg = address; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/1eba64e8_ae53be31... : PS4, Line 58: NVMCTRL->CTRLB.reg = NVMCTRL_CTRLB_CMD_WP | NVMCTRL_CTRLB_CMDEX_KEY; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/8919cae6_8bfb350e... : PS4, Line 59: while (!NVMCTRL->INTFLAG.bit.DONE) {} please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/514f261a_21b9619b... : PS4, Line 60: while (!NVMCTRL->STATUS.bit.READY) {} please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/accef3a9_4191981a... : PS4, Line 105: uint32_t address = 0; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/7a054b03_2a6ae9d7... : PS4, Line 106: uint8_t *data_ptr = (uint8_t *)bl_update_data; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/50b965da_a7bc60ba... : PS4, Line 107: uint32_t remaining = BLSZ_BYTE; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/5e4dd0d8_b67b0088... : PS4, Line 109: while (remaining >= NVMCTRL_PAGE_SIZE) { please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/5a1c6c29_ee02f25e... : PS4, Line 110: same54_flash_write_page(address, data_ptr); please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/f1e542cd_fa439af9... : PS4, Line 111: address += NVMCTRL_PAGE_SIZE; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/b0fdc5c0_fb55d9ac... : PS4, Line 112: data_ptr += NVMCTRL_PAGE_SIZE; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/3a7a1b66_fae988aa... : PS4, Line 113: remaining -= NVMCTRL_PAGE_SIZE; please, no spaces at the start of a line
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-21273): https://gerrit.osmocom.org/c/osmo-asf4-dfu/+/39434/comment/ebc8d373_c93a3153... : PS4, Line 114: } please, no spaces at the start of a line