aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-08-08 12:20:24 -0600
committerTom Rini <trini@konsulko.com>2021-09-04 12:26:02 -0400
commitb2f9bac0e703631b12f1e40c1a8b15345923a29a (patch)
tree798e90b42511d476d27569884a2f4ed2901e60c7 /Makefile
parent80a4876c86bbf4c05ebe387d0cfa6236d444ebd9 (diff)
downloadu-boot-b2f9bac0e703631b12f1e40c1a8b15345923a29a.zip
u-boot-b2f9bac0e703631b12f1e40c1a8b15345923a29a.tar.gz
u-boot-b2f9bac0e703631b12f1e40c1a8b15345923a29a.tar.bz2
gpio: Add a GPIO config
At present we have SPL_GPIO and TPL_GPIO but not piain GPIO. This works because there is a special build rule in Makefile that always includes the drivers/gpio directory. It is better to have all driver directories included by drivers/Makefile and there is already a rule in there for this purpose. It just needs a Kconfig for U-Boot proper, so add one. Enable the option always for now, since this mimics current behaviour. This can be updated once DM_GPIO is used everywhere. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 27fba91..a2f7129 100644
--- a/Makefile
+++ b/Makefile
@@ -813,7 +813,6 @@ libs-y += fs/
libs-y += net/
libs-y += disk/
libs-y += drivers/
-libs-y += drivers/gpio/
libs-y += drivers/net/
libs-y += drivers/net/phy/
libs-y += drivers/power/ \