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

Commit 20749051 authored by Kees Cook's avatar Kees Cook Committed by Tony Lindgren
Browse files

bus: ti-sysc: Use 2-factor allocator arguments



This adjusts the allocator calls to use 2-factor argument call style, as
done treewide already for improved defense against allocation overflows.

Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent ce397d21
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -169,9 +169,9 @@ static int sysc_get_clocks(struct sysc *ddata)
	const char *name;
	int nr_fck = 0, nr_ick = 0, i, error = 0;

	ddata->clock_roles = devm_kzalloc(ddata->dev,
					  sizeof(*ddata->clock_roles) *
	ddata->clock_roles = devm_kcalloc(ddata->dev,
					  SYSC_MAX_CLOCKS,
					  sizeof(*ddata->clock_roles),
					  GFP_KERNEL);
	if (!ddata->clock_roles)
		return -ENOMEM;
@@ -200,8 +200,8 @@ static int sysc_get_clocks(struct sysc *ddata)
		return -EINVAL;
	}

	ddata->clocks = devm_kzalloc(ddata->dev,
				     sizeof(*ddata->clocks) * ddata->nr_clocks,
	ddata->clocks = devm_kcalloc(ddata->dev,
				     ddata->nr_clocks, sizeof(*ddata->clocks),
				     GFP_KERNEL);
	if (!ddata->clocks)
		return -ENOMEM;