Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions drivers/soc/sifive/sifive_l2_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ void sifive_l2_flush64_range(unsigned long start, unsigned long len)
if(start < CONFIG_SIFIVE_L2_FLUSH_START ||
(start + len) > (CONFIG_SIFIVE_L2_FLUSH_START +
CONFIG_SIFIVE_L2_FLUSH_SIZE)) {
pr_warn("L2CACHE: flush64 out of range: %lx(%lx), skip flush\n",
start, len);
WARN(1, "L2CACHE: flush64 out of range: %lx(%lx), skip flush\n",
start, len);
return;
}

Expand Down