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

Commit 376c0afe authored by Andrzej Hajda's avatar Andrzej Hajda Committed by Mark Brown
Browse files

ASoC: topology: use kmemdup rather than duplicating its implementation

The patch was generated using fixed coccinelle semantic patch
scripts/coccinelle/api/memdup.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2014320



Signed-off-by: default avatarAndrzej Hajda <a.hajda@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 4ca7deb1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -832,12 +832,12 @@ static int soc_tplg_denum_create_values(struct soc_enum *se,
	if (ec->items > sizeof(*ec->values))
		return -EINVAL;

	se->dobj.control.dvalues =
		kmalloc(ec->items * sizeof(u32), GFP_KERNEL);
	se->dobj.control.dvalues = kmemdup(ec->values,
					   ec->items * sizeof(u32),
					   GFP_KERNEL);
	if (!se->dobj.control.dvalues)
		return -ENOMEM;

	memcpy(se->dobj.control.dvalues, ec->values, ec->items * sizeof(u32));
	return 0;
}