diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2018-09-18 10:35:27 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-28 20:22:35 -0400 |
commit | c924ee25aa0e837bf4ae207e9959babe23a372d6 (patch) | |
tree | 96f4a40580f9118f6e25a962c2c44c11251128bb /drivers/Makefile | |
parent | e1721ba0e68ebe8ef88e375301b53077d66c0448 (diff) | |
download | u-boot-c924ee25aa0e837bf4ae207e9959babe23a372d6.tar.gz |
W1-EEPROM: Add an W1-EEPROM uclass for 1 wire EEPROMs
We might want to access data stored onto one wire EEPROMs.
Create a framework to provide a consistent API.
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
[eugen.hristev@microchip.com: reworked patch]
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 4ca07c38a0..1d5905fe73 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -106,6 +106,7 @@ obj-y += soc/ obj-y += thermal/ obj-y += axi/ obj-$(CONFIG_W1) += w1/ +obj-$(CONFIG_W1_EEPROM) += w1-eeprom/ obj-$(CONFIG_MACH_PIC32) += ddr/microchip/ endif |