mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 22:31:55 +00:00
Consistently use config FOO bool/int/hex/string "Prompt text" instead of config FOO bool/int/hex/string prompt "Prompt text" (...and a bunch of other variations that e.g. swapped the order of the type and the 'prompt', or put other properties between them). The shorthand is fully equivalent to using 'prompt'. It saves lines and avoids tricking people into thinking there is some semantic difference. Most of the grunt work was done by a modified version of https://unix.stackexchange.com/questions/26284/ how-can-i-use-sed-to-replace-a-multi-line-string/26290#26290, but some of the rarer variations had to be converted manually. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
20 lines
379 B
Plaintext
20 lines
379 B
Plaintext
# Kconfig - i.MX PWM Config
|
|
#
|
|
# Copyright (c) 2018, Diego Sueiro
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig PWM_IMX
|
|
bool "i.MX PWM Driver"
|
|
depends on PWM
|
|
help
|
|
Enable support for i.MX pwm driver.
|
|
|
|
config PWM_PWMSWR_LOOP
|
|
int "Loop count for PWM Software Reset"
|
|
default 5
|
|
depends on PWM_IMX
|
|
help
|
|
Loop count for PWM Software Reset when disabling PWM channel.
|