1# Copyright 2024 Cirrus Logic, Inc.
2#
3# SPDX-License-Identifier: Apache-2.0
4
5menuconfig HAPTICS
6	bool "Haptic feedback drivers"
7	help
8	  Enable haptics driver configuration.
9
10if HAPTICS
11
12module = HAPTICS
13module-str = haptics
14source "subsys/logging/Kconfig.template.log_config"
15
16config HAPTICS_INIT_PRIORITY
17	int "Haptic driver init priority"
18	default 90
19	help
20	  Haptic driver initialization priority.
21
22config HAPTICS_SHELL
23	bool "Haptics shell"
24	depends on SHELL
25	help
26	  Enable Haptics-related shell commands.
27
28# zephyr-keep-sorted-start
29source "drivers/haptics/Kconfig.drv2605"
30# zephyr-keep-sorted-stop
31
32endif # HAPTICS
33