diff options
author | Joel Challis <git@zvecr.com> | 2021-08-31 00:25:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-31 00:25:41 +0100 |
commit | f2c9e82e5b3887ed28c3a5c68d27c4efaca54201 (patch) | |
tree | 42e04b09167623a8d3809e3dbd4e435bc877a5a5 /tmk_core/common/test | |
parent | 1e7117317fd8a51f9ca6e926777694b930c9502b (diff) | |
download | qmk_firmware-f2c9e82e5b3887ed28c3a5c68d27c4efaca54201.tar.gz qmk_firmware-f2c9e82e5b3887ed28c3a5c68d27c4efaca54201.zip |
cherry pick tidy up (#14244)
Diffstat (limited to 'tmk_core/common/test')
-rw-r--r-- | tmk_core/common/test/flash_stm32_mock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tmk_core/common/test/flash_stm32_mock.c b/tmk_core/common/test/flash_stm32_mock.c index 1b81d81f9a..222a004bc7 100644 --- a/tmk_core/common/test/flash_stm32_mock.c +++ b/tmk_core/common/test/flash_stm32_mock.c @@ -47,4 +47,3 @@ FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data) { FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout) { return FLASH_COMPLETE; } void FLASH_Unlock(void) { flash_locked = false; } void FLASH_Lock(void) { flash_locked = true; } -void FLASH_ClearFlag(uint32_t FLASH_FLAG) {} |