From: Simon Glass Date: Mon, 4 Jul 2016 17:58:19 +0000 (-0600) Subject: sandbox: Don't bring in the eeprom emulator in SPL X-Git-Tag: v2016.09-rc1~82^2~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2c9dfb5807bfbf97b60481586d5db3c677cba65b;p=oweals%2Fu-boot.git sandbox: Don't bring in the eeprom emulator in SPL This driver should not be used in SPL since we do not have I2C support enabled in SPL on sandbox. Signed-off-by: Simon Glass --- diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 3eac0245ea..fff6f0cdf9 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -29,8 +29,10 @@ obj-$(CONFIG_PDSP188x) += pdsp188x.o obj-$(CONFIG_$(SPL_)PWRSEQ) += pwrseq-uclass.o obj-$(CONFIG_SANDBOX) += sysreset_sandbox.o ifdef CONFIG_DM_I2C +ifndef CONFIG_SPL_BUILD obj-$(CONFIG_SANDBOX) += i2c_eeprom_emul.o endif +endif obj-$(CONFIG_SMSC_LPC47M) += smsc_lpc47m.o obj-$(CONFIG_SMSC_SIO1007) += smsc_sio1007.o obj-$(CONFIG_STATUS_LED) += status_led.o