Skip to content
Snippets Groups Projects
Commit 3d9cd5c0 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Params: Ignore volatile

parent 48af6b6d
No related branches found
No related tags found
No related merge requests found
......@@ -1363,7 +1363,7 @@ uint32_t param_hash_check(void)
/* compute the CRC32 over all string param names and 4 byte values */
for (param_t param = 0; handle_in_range(param); param++) {
if (!param_used(param) && param_is_volatile(param)) {
if (!param_used(param) || param_is_volatile(param)) {
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment