1
0
Fork 0

of: irq: Remove WARN_ON() for kzalloc() failure

There is no need to print a backtrace if kzalloc() fails, as the memory
allocation core already takes care of that.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rob Herring <robh@kernel.org>
hifive-unleashed-5.2
Geert Uytterhoeven 2019-05-02 14:40:15 +02:00 committed by Rob Herring
parent c50495aa4c
commit 6f7dc9a37f
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ void __init of_irq_init(const struct of_device_id *matches)
* pointer, interrupt-parent device_node etc.
*/
desc = kzalloc(sizeof(*desc), GFP_KERNEL);
if (WARN_ON(!desc)) {
if (!desc) {
of_node_put(np);
goto err;
}