diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2008-12-17 16:36:22 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-01-24 01:47:50 +0100 |
commit | a7c9310457e85b4598abe5b304108edf11332e2f (patch) | |
tree | 24a13a1a1e37eccd2186da96bb3a8ac263a92209 /drivers/misc/Makefile | |
parent | b6fc6fd49a84543e1324e1620b9f301ff7c1f27f (diff) | |
download | u-boot-imx-a7c9310457e85b4598abe5b304108edf11332e2f.zip u-boot-imx-a7c9310457e85b4598abe5b304108edf11332e2f.tar.gz u-boot-imx-a7c9310457e85b4598abe5b304108edf11332e2f.tar.bz2 |
Add support for Maxim's DS4510 I2C device
Initial support for the DS4510, a CPU supervisor with
integrated EEPROM, SRAM, and 4 programmable non-volatile
GPIO pins. The CONFIG_DS4510 define enables support
for the device while the CONFIG_CMD_DS4510 define
enables the ds4510 command. The additional
CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
CONFIG_DS4510_RST defines add additional sub-commands
to the ds4510 command when defined.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'drivers/misc/Makefile')
-rw-r--r-- | drivers/misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 01e0f39..ea2bf87 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libmisc.a COBJS-$(CONFIG_ALI152X) += ali512x.o +COBJS-$(CONFIG_DS4510) += ds4510.o COBJS-$(CONFIG_FSL_LAW) += fsl_law.o COBJS-$(CONFIG_NS87308) += ns87308.o COBJS-$(CONFIG_STATUS_LED) += status_led.o |