mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 23:20:05 +00:00
pinctrl: intel: merrifield: fix dup size in probe
In function mrfld_pinctrl_probe(), when duplicating the mrfld_families array the requested memory region length is multiplied once too many by the number of elements in the original array. Fix this to spare some memory. Fixes: 4e80c8f505741cbd ("pinctrl: intel: Add Intel Merrifield pin controller support") Signed-off-by: Vincent Stehlé <vincent.stehle@intel.com> Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
9395452b4a
commit
c11a0442b0
@ -854,7 +854,7 @@ static int mrfld_pinctrl_probe(struct platform_device *pdev)
|
||||
*/
|
||||
nfamilies = ARRAY_SIZE(mrfld_families),
|
||||
families = devm_kmemdup(&pdev->dev, mrfld_families,
|
||||
nfamilies * sizeof(mrfld_families),
|
||||
sizeof(mrfld_families),
|
||||
GFP_KERNEL);
|
||||
if (!families)
|
||||
return -ENOMEM;
|
||||
|
Loading…
x
Reference in New Issue
Block a user