From 5917112c9e9f7a60062c604b3224bd5713c41f46 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 23 Jun 2015 15:38:45 -0600 Subject: dm: Add support for LEDs Add a simple uclass for LEDs, so that these can be controlled by the device tree and activated when needed. LEDs are referred to by their label. This implementation requires a driver for each type of LED (e.g GPIO, I2C). Signed-off-by: Simon Glass --- drivers/led/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 drivers/led/Makefile (limited to 'drivers/led/Makefile') diff --git a/drivers/led/Makefile b/drivers/led/Makefile new file mode 100644 index 0000000..b39b205 --- /dev/null +++ b/drivers/led/Makefile @@ -0,0 +1,8 @@ +# +# Copyright (c) 2015 Google, Inc +# Written by Simon Glass +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-$(CONFIG_LED) += led-uclass.o -- cgit v1.1