diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-23 22:19:39 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-23 22:19:39 -0500 |
commit | 3e4cbe184a0f6537abb457d6afa61224396c4e46 (patch) | |
tree | d6e95e03385c33f5d99775cc44710fc6f540b094 /drivers/pwm/pwm-imx.c | |
parent | 52d91e1c20b399ddab276e2c03e5788ed5e5fdd2 (diff) | |
parent | 90c7888c9d6b3223c32f068668f3bc5a81010f8e (diff) |
Merge branch '2022-12-23-complete-phase1-CONFIG-migration' into next
- Bring in the final series to complete the main portion of migrating
CONFIG symbols to either Kconfig or CFG namespace (or removing /
renaming entirely). With this, we have stricter CI tests as well now.
Diffstat (limited to 'drivers/pwm/pwm-imx.c')
-rw-r--r-- | drivers/pwm/pwm-imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c index 9b8a8c189d0..8fbb40cc276 100644 --- a/drivers/pwm/pwm-imx.c +++ b/drivers/pwm/pwm-imx.c @@ -76,7 +76,7 @@ int pwm_imx_get_parms(int period_ns, int duty_ns, unsigned long *period_c, * value here as a define. Replace it when we have the clock * framework. */ - c = CONFIG_IMX6_PWM_PER_CLK; + c = CFG_IMX6_PWM_PER_CLK; c = c * period_ns; do_div(c, 1000000000); *period_c = c; |