zephyr/drivers/kscan/Kconfig
Fabio Baltieri f7c0a643df kscan: mark the kscan driver class as deprecated
All kscan drivers have been moved over to input, Mark the kscan driver
class as deprecated so it can be removed in the 4.2 release.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2024-09-17 14:52:50 -04:00

26 lines
547 B
Text

# Keyboard scan configuration options
# Copyright (c) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig KSCAN
bool "Keyboard scan drivers [DEPRECATED]"
select DEPRECATED
help
Include Keyboard scan drivers in system config.
if KSCAN
source "drivers/kscan/Kconfig.input"
module = KSCAN
module-str = kscan
source "subsys/logging/Kconfig.template.log_config"
config KSCAN_INIT_PRIORITY
int "Keyboard scan driver init priority"
default 90
help
Keyboard scan device driver initialization priority.
endif # KSCAN