Re: [PATCH v2 2/2] pwm: add Axiado AX3000 PWM driver

From: Krzysztof Kozlowski

Date: Fri Jul 24 2026 - 04:36:50 EST


On Thu, Jul 23, 2026 at 02:32:19AM -0700, Petar Stepanovic wrote:
> + chip->ops = &axiado_pwm_ops;
> + chip->atomic = true;
> +
> + ret = devm_pwmchip_add(dev, chip);
> + if (ret)
> + return dev_err_probe(dev, ret, "Failed to add PWM chip\n");
> +
> + return 0;
> +}
> +
> +static const struct of_device_id axiado_pwm_match[] = {
> + { .compatible = "axiado,ax3000-pwm" },
> + { .compatible = "axiado,ax3005-pwm" },

This suggests deviecs are fully compatible, so drop the second entry and
express compatibility (see writing bindings, example schema, DTS101
talk/slides).

Best regards,
Krzysztof