mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
c0165c85c3
Add a simple Analog to Digital Converter device based button driver. This driver binds to the 'adc-keys' device tree node. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
7 lines
233 B
Makefile
7 lines
233 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2020 Philippe Reynes <philippe.reynes@softathome.com>
|
|
|
|
obj-$(CONFIG_BUTTON) += button-uclass.o
|
|
obj-$(CONFIG_BUTTON_ADC) += button-adc.o
|
|
obj-$(CONFIG_BUTTON_GPIO) += button-gpio.o
|