diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2020-07-24 18:19:46 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-28 19:30:39 -0600 |
commit | 486b973ee9b9bd89ff53bc9d3d1cff4ada73eb36 (patch) | |
tree | 67df97d7343a2fb11edd92a05b93c7bd609c417c /drivers/button/Makefile | |
parent | 30d66db78725e8396a3bd255cc51592c6cd7879d (diff) |
dm: button: add a driver for button driven by gpio
Add a simple driver which allows use of buttons attached to GPIOs.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'drivers/button/Makefile')
-rw-r--r-- | drivers/button/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/button/Makefile b/drivers/button/Makefile index 0b4c128cff..fcc10ebe8d 100644 --- a/drivers/button/Makefile +++ b/drivers/button/Makefile @@ -3,3 +3,4 @@ # Copyright (C) 2020 Philippe Reynes <philippe.reynes@softathome.com> obj-$(CONFIG_BUTTON) += button-uclass.o +obj-$(CONFIG_BUTTON_GPIO) += button-gpio.o |