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

Commit 6b4ed8b0 authored by Dan Carpenter's avatar Dan Carpenter Committed by Pawel Moll
Browse files

clk: vexpress: NULL dereference on error path



If the allocation fails then we dereference the NULL in the error path.
Just return directly.

Fixes: ed27ff1d ('clk: Versatile Express clock generators ("osc") driver')
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarPawel Moll <pawel.moll@arm.com>
parent a798c10f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ void __init vexpress_osc_of_setup(struct device_node *node)

	osc = kzalloc(sizeof(*osc), GFP_KERNEL);
	if (!osc)
		goto error;
		return;

	osc->func = vexpress_config_func_get_by_node(node);
	if (!osc->func) {