mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
net: dsa: replace count*size kzalloc by kcalloc
kcalloc manages count*sizeof overflow. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5bc4b46a70
commit
6f2aed6ad7
@ -607,8 +607,8 @@ static int dsa_of_probe(struct platform_device *pdev)
|
||||
if (pd->nr_chips > DSA_MAX_SWITCHES)
|
||||
pd->nr_chips = DSA_MAX_SWITCHES;
|
||||
|
||||
pd->chip = kzalloc(pd->nr_chips * sizeof(struct dsa_chip_data),
|
||||
GFP_KERNEL);
|
||||
pd->chip = kcalloc(pd->nr_chips, sizeof(struct dsa_chip_data),
|
||||
GFP_KERNEL);
|
||||
if (!pd->chip) {
|
||||
ret = -ENOMEM;
|
||||
goto out_free;
|
||||
|
Loading…
Reference in New Issue
Block a user