* [PATCH v3] pinctrl: intel: move PWM base computation past feature check
@ 2026-05-17 16:15 Stepan Ionichev
2026-05-18 4:46 ` Mika Westerberg
2026-05-18 7:02 ` Andy Shevchenko
0 siblings, 2 replies; 3+ messages in thread
From: Stepan Ionichev @ 2026-05-17 16:15 UTC (permalink / raw)
To: andy; +Cc: mika.westerberg, linusw, linux-gpio, linux-kernel, sozdayvek
Compute base inside intel_pinctrl_probe_pwm() only after the
PINCTRL_FEATURE_PWM and CONFIG_PWM_LPSS checks have passed. Tidy
up; no functional change.
Suggested-by: Andy Shevchenko <andy@kernel.org>
Link: https://lore.kernel.org/linux-gpio/aglu5jy5SbW9Wjwj@ashevche-desk.local/
Signed-off-by: Stepan Ionichev <sozdayvek@gmail.com>
---
Changes since v2:
- Trim commit message per Andy.
Changes since v1:
- Drop the array zero-initialisation approach.
- Move base assignment past the feature checks, per Andy.
- Drop the Fixes: tag.
v2: https://lore.kernel.org/linux-gpio/20260517154002.1994-1-sozdayvek@gmail.com/
v1: https://lore.kernel.org/linux-gpio/20260515150049.33761-1-sozdayvek@gmail.com/
drivers/pinctrl/intel/pinctrl-intel.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/pinctrl/intel/pinctrl-intel.c b/drivers/pinctrl/intel/pinctrl-intel.c
index 97bf5ec78..2e2526e01 100644
--- a/drivers/pinctrl/intel/pinctrl-intel.c
+++ b/drivers/pinctrl/intel/pinctrl-intel.c
@@ -1556,13 +1556,13 @@ static int intel_pinctrl_probe_pwm(struct intel_pinctrl *pctrl,
struct intel_community *community,
unsigned short capability_offset)
{
- void __iomem *base = community->regs + capability_offset + 4;
static const struct pwm_lpss_boardinfo info = {
.clk_rate = 19200000,
.npwm = 1,
.base_unit_bits = 22,
};
struct pwm_chip *chip;
+ void __iomem *base;
if (!(community->features & PINCTRL_FEATURE_PWM))
return 0;
@@ -1570,6 +1570,7 @@ static int intel_pinctrl_probe_pwm(struct intel_pinctrl *pctrl,
if (!IS_REACHABLE(CONFIG_PWM_LPSS))
return 0;
+ base = community->regs + capability_offset + 4;
chip = devm_pwm_lpss_probe(pctrl->dev, base, &info);
return PTR_ERR_OR_ZERO(chip);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] pinctrl: intel: move PWM base computation past feature check
2026-05-17 16:15 [PATCH v3] pinctrl: intel: move PWM base computation past feature check Stepan Ionichev
@ 2026-05-18 4:46 ` Mika Westerberg
2026-05-18 7:02 ` Andy Shevchenko
1 sibling, 0 replies; 3+ messages in thread
From: Mika Westerberg @ 2026-05-18 4:46 UTC (permalink / raw)
To: Stepan Ionichev; +Cc: andy, linusw, linux-gpio, linux-kernel
On Sun, May 17, 2026 at 09:15:30PM +0500, Stepan Ionichev wrote:
> Compute base inside intel_pinctrl_probe_pwm() only after the
> PINCTRL_FEATURE_PWM and CONFIG_PWM_LPSS checks have passed. Tidy
> up; no functional change.
>
> Suggested-by: Andy Shevchenko <andy@kernel.org>
> Link: https://lore.kernel.org/linux-gpio/aglu5jy5SbW9Wjwj@ashevche-desk.local/
> Signed-off-by: Stepan Ionichev <sozdayvek@gmail.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] pinctrl: intel: move PWM base computation past feature check
2026-05-17 16:15 [PATCH v3] pinctrl: intel: move PWM base computation past feature check Stepan Ionichev
2026-05-18 4:46 ` Mika Westerberg
@ 2026-05-18 7:02 ` Andy Shevchenko
1 sibling, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2026-05-18 7:02 UTC (permalink / raw)
To: Stepan Ionichev; +Cc: andy, mika.westerberg, linusw, linux-gpio, linux-kernel
On Sun, May 17, 2026 at 09:15:30PM +0500, Stepan Ionichev wrote:
> Compute base inside intel_pinctrl_probe_pwm() only after the
> PINCTRL_FEATURE_PWM and CONFIG_PWM_LPSS checks have passed. Tidy
> up; no functional change.
Pushed to my review and testing queue, thanks!
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-18 7:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-17 16:15 [PATCH v3] pinctrl: intel: move PWM base computation past feature check Stepan Ionichev
2026-05-18 4:46 ` Mika Westerberg
2026-05-18 7:02 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox