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
1 changed files with 2 additions and 2 deletions
|
@ -607,7 +607,7 @@ static int dsa_of_probe(struct platform_device *pdev)
|
||||||
if (pd->nr_chips > DSA_MAX_SWITCHES)
|
if (pd->nr_chips > DSA_MAX_SWITCHES)
|
||||||
pd->nr_chips = DSA_MAX_SWITCHES;
|
pd->nr_chips = DSA_MAX_SWITCHES;
|
||||||
|
|
||||||
pd->chip = kzalloc(pd->nr_chips * sizeof(struct dsa_chip_data),
|
pd->chip = kcalloc(pd->nr_chips, sizeof(struct dsa_chip_data),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!pd->chip) {
|
if (!pd->chip) {
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
|
|
Loading…
Add table
Reference in a new issue