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>
26 lines
547 B
Text
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
|