| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | # Kconfig - PWM configuration options## Copyright (c) 2015 Intel Corporation## SPDX-License-Identifier: Apache-2.0#menuconfig PWM	bool	prompt "PWM device drivers"	default n	help	  Enable input device driver configurationif PWMconfig LOG_PWM_DEV_LEVEL	int	prompt "INPUT Device drivers log level"	range 0 4	default 0	help	  Sets log level for PWM Device driver.	  Levels are:	  - 0 OFF, do not write	  - 1 ERROR, only write SYS_LOG_ERR	  - 2 WARNING, write SYS_LOG_WRN in addition to previous level	  - 3 INFO, write SYS_LOG_INF in addition to previous levels	  - 4 DEBUG, write SYS_LOG_DBG in addition to previous levelsconfig PWM_ACTS	bool "Actions SoC PWM driver"	default n	help	  Enable support for Actions PWM driver.menuconfig VIBRATOR	bool	prompt "Vibrator device drivers"	default n	help	  Enable input device driver configurationif VIBRATORconfig VIBRATOR_ACTS	bool "Actions vibration motor driver"	default n	help	  Enable support for Actions vibration motor driver.endif # VIBRATORendif # PWM
 |