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

Commit c3499f0b authored by Thierry Reding's avatar Thierry Reding
Browse files

Merge branch 'for-4.7/pwm-cleanup' into for-next

parents f55532a0 2907f8ab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ static void free_pwms(struct pwm_chip *chip)

	for (i = 0; i < chip->npwm; i++) {
		struct pwm_device *pwm = &chip->pwms[i];

		radix_tree_delete(&pwm_tree, pwm->pwm);
	}

@@ -254,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;