mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
pwm: Use kcalloc() instead of kzalloc()
kcalloc() should be preferred for allocations of arrays over kzalloc() with multiplication. Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
parent
83a98864ff
commit
2907f8abb7
|
|
@ -255,7 +255,7 @@ int pwmchip_add_with_polarity(struct pwm_chip *chip,
|
|||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
chip->pwms = kzalloc(chip->npwm * sizeof(*pwm), GFP_KERNEL);
|
||||
chip->pwms = kcalloc(chip->npwm, sizeof(*pwm), GFP_KERNEL);
|
||||
if (!chip->pwms) {
|
||||
ret = -ENOMEM;
|
||||
goto out;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user