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
22source "drivers/haptics/Kconfig.drv2605"
23
24endif # HAPTICS
25