From: Juan Quintela Date: Wed, 7 Oct 2009 00:41:24 +0000 (+0200) Subject: Only compile ads7846 when one target uses it X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=20a4afc4216fc6031105d9735510dbe7a4979069;p=qemu.git Only compile ads7846 when one target uses it Patchworks-ID: 35218 Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- diff --git a/Makefile b/Makefile index 1736abd0ae..369ec9fa05 100644 --- a/Makefile +++ b/Makefile @@ -107,8 +107,8 @@ obj-$(CONFIG_TMP105) += tmp105.o obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o obj-$(CONFIG_SSD0303) += ssd0303.o obj-$(CONFIG_SSD0323) += ssd0323.o +obj-$(CONFIG_ADS7846) += ads7846.o obj-y += i2c.o smbus.o smbus_eeprom.o max111x.o -obj-y += ads7846.o obj-y += eeprom93xx.o obj-y += scsi-disk.o cdrom.o obj-y += scsi-generic.o scsi-bus.o diff --git a/default-configs/arm-softmmu.mak b/default-configs/arm-softmmu.mak index 1d069b1b9c..f68273d57e 100644 --- a/default-configs/arm-softmmu.mak +++ b/default-configs/arm-softmmu.mak @@ -16,3 +16,4 @@ CONFIG_TMP105=y CONFIG_STELLARIS_INPUT=y CONFIG_SD0303=y CONFIG_SD0323=y +CONFIG_ADS7846=y