Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a26ed66c authored by Julia Lawall's avatar Julia Lawall Committed by Thomas Gleixner
Browse files

clocksource/drivers/stm32: Fix error return code



Return an error code on failure.

Problem found using Coccinelle.

Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: kernel-janitors@vger.kernel.org
Cc: Maxime Coquelin <mcoquelin.stm32@gmail.com>
Cc: Alexandre Torgue <alexandre.torgue@st.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: https://lkml.kernel.org/r1528640655-18948-3-git-send-email-Julia.Lawall@lip6.fr
parent c60c32a5
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -304,8 +304,10 @@ static int __init stm32_timer_init(struct device_node *node)

	to->private_data = kzalloc(sizeof(struct stm32_timer_private),
				   GFP_KERNEL);
	if (!to->private_data)
	if (!to->private_data) {
		ret = -ENOMEM;
		goto deinit;
	}

	rstc = of_reset_control_get(node, NULL);
	if (!IS_ERR(rstc)) {