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 [DEPRECATED]"
8	select DEPRECATED
9	help
10	  Include Keyboard scan drivers in system config.
11
12if KSCAN
13
14source "drivers/kscan/Kconfig.input"
15
16module = KSCAN
17module-str = kscan
18source "subsys/logging/Kconfig.template.log_config"
19
20config KSCAN_INIT_PRIORITY
21	int "Keyboard scan driver init priority"
22	default 90
23	help
24	  Keyboard scan device driver initialization priority.
25
26endif # KSCAN
27