1# Keyboard scan configuration options
2
3# Copyright (c) 2019 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig KSCAN
7	bool "Keyboard Scan Drivers"
8	help
9	  Include Keyboard scan drivers in system config.
10
11if KSCAN
12
13source "drivers/kscan/Kconfig.ft5336"
14source "drivers/kscan/Kconfig.xec"
15source "drivers/kscan/Kconfig.sdl"
16source "drivers/kscan/Kconfig.ht16k33"
17
18module = KSCAN
19module-str = kscan
20source "subsys/logging/Kconfig.template.log_config"
21
22config KSCAN_INIT_PRIORITY
23	int "Keyboard scan driver init priority"
24	default 90
25	help
26	  Keyboard scan device driver initialization priority.
27
28endif # KSCAN
29