flash_cache:Flush complete cache line

This commit is contained in:
David Sidrane 2022-05-27 07:16:44 -07:00 committed by Daniel Agar
parent fd81951391
commit 645f4c3428
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ inline int fc_is_dirty(flash_cache_line_t *fl)
int fc_flush(flash_cache_line_t *fl)
{
size_t bytes = (fl->index + 1) * sizeof(fl->words[0]);
const size_t bytes = sizeof(fl->words);
size_t rv = arch_flash_write(fl->start_address, fl->words, bytes);
if (rv == bytes) {