aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2019-05-02 14:40:15 +0200
committerRob Herring <robh@kernel.org>2019-05-02 16:38:00 -0500
commit6f7dc9a37f2b325fc870d1e1ada6169185f8852c (patch)
treefe328a421ff8e8726eefb1b6513e51b517ac62af /drivers/of
parentdt-bindings: pinctrl: fix bias-pull,up typo (diff)
downloadlinux-dev-6f7dc9a37f2b325fc870d1e1ada6169185f8852c.tar.xz
linux-dev-6f7dc9a37f2b325fc870d1e1ada6169185f8852c.zip
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>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c
index e1f6f392a4c0..7f84bb4903ca 100644
--- a/drivers/of/irq.c
+++ b/drivers/of/irq.c
@@ -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;
}