Port the gpio_keys_zephyr driver from the gpio subsystem with a dedicated API to the input subsystem reporting input events. Move the test as well, simplify the cases a bit since the API is simpler now. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
# Copyright 2023 Google LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if INPUT
|
|
|
|
menu "Input Drivers"
|
|
|
|
source "drivers/input/Kconfig.gpio_keys"
|
|
|
|
endmenu # Input Drivers
|
|
|
|
endif # INPUT
|