|
@@ -226,10 +226,9 @@ static void __init __rmem_check_for_overlap(void)
|
|
|
|
|
|
this_end = this->base + this->size;
|
|
|
next_end = next->base + next->size;
|
|
|
- WARN(1,
|
|
|
- "Reserved memory: OVERLAP DETECTED!\n%s (%pa--%pa) overlaps with %s (%pa--%pa)\n",
|
|
|
- this->name, &this->base, &this_end,
|
|
|
- next->name, &next->base, &next_end);
|
|
|
+ pr_err("Reserved memory: OVERLAP DETECTED!\n%s (%pa--%pa) overlaps with %s (%pa--%pa)\n",
|
|
|
+ this->name, &this->base, &this_end,
|
|
|
+ next->name, &next->base, &next_end);
|
|
|
}
|
|
|
}
|
|
|
}
|