Message ID | 20250210195230.490904-3-andriy.shevchenko@linux.intel.com |
---|---|
State | New |
Headers | show |
Series | pinctrl: intel: Fix PWM initialisation | expand |
On Tue, Feb 11, 2025 at 01:11:57PM +0100, Alexis GUILLEMET wrote: > On Mon, Feb 10, 2025 at 08:44PM +0200, Andy Shevchenko wrote: > Tested-by: Alexis GUILLEMET<alexis.guillemet@dunasys.com> Thank you for confirming, I'm going to push this to my review and testing queue soon. It should appear in the next (v6.15-rc1) Linux kernel.
diff --git a/drivers/pinctrl/intel/pinctrl-intel.c b/drivers/pinctrl/intel/pinctrl-intel.c index 5c04079e852b..8d1f4e7a2fe2 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.c +++ b/drivers/pinctrl/intel/pinctrl-intel.c @@ -1543,7 +1543,6 @@ static int intel_pinctrl_probe_pwm(struct intel_pinctrl *pctrl, .clk_rate = 19200000, .npwm = 1, .base_unit_bits = 22, - .bypass = true, }; struct pwm_chip *chip;
When instantiating PWM, the bypass should be set to false. The field is used for the selected Intel SoCs that do not have PWM feature enabled in their pin control IPs. Fixes: eb78d3604d6b ("pinctrl: intel: Enumerate PWM device when community has a capability") Reported-by: Alexis GUILLEMET<alexis.guillemet@dunasys.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/pinctrl/intel/pinctrl-intel.c | 1 - 1 file changed, 1 deletion(-)