summaryrefslogtreecommitdiffstats
path: root/hw/timer/Makefile.objs
diff options
context:
space:
mode:
authorDavid Gibson2016-11-08 07:00:35 +0100
committerDavid Gibson2017-02-06 02:33:21 +0100
commitc124c4d13bcb19fc866e7f6de075f906fca6af4a (patch)
treec66e94e375b8398b9e31068d73b31c0f3e6aac01 /hw/timer/Makefile.objs
parentAllow ISA bus to be configured out (diff)
downloadqemu-c124c4d13bcb19fc866e7f6de075f906fca6af4a.tar.gz
qemu-c124c4d13bcb19fc866e7f6de075f906fca6af4a.tar.xz
qemu-c124c4d13bcb19fc866e7f6de075f906fca6af4a.zip
Split ISA and sysbus versions of m48t59 device
The m48t59 device supports both ISA and direct sysbus attached versions of the device in the one .c file. This can be awkward for some embedded machine types which need the sysbus M48T59, but don't want to pull in the ISA bus code and its other dependencies. Therefore, this patch splits out the code for the ISA attached M48T59 into its own C file. It will be built when both CONFIG_M48T59 and CONFIG_ISA_BUS are enabled. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/timer/Makefile.objs')
-rw-r--r--hw/timer/Makefile.objs3
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/timer/Makefile.objs b/hw/timer/Makefile.objs
index 71994f2d88..fc9966880f 100644
--- a/hw/timer/Makefile.objs
+++ b/hw/timer/Makefile.objs
@@ -6,6 +6,9 @@ common-obj-$(CONFIG_DS1338) += ds1338.o
common-obj-$(CONFIG_HPET) += hpet.o
common-obj-$(CONFIG_I8254) += i8254_common.o i8254.o
common-obj-$(CONFIG_M48T59) += m48t59.o
+ifeq ($(CONFIG_ISA_BUS),y)
+common-obj-$(CONFIG_M48T59) += m48t59-isa.o
+endif
common-obj-$(CONFIG_PL031) += pl031.o
common-obj-$(CONFIG_PUV3) += puv3_ost.o
common-obj-$(CONFIG_TWL92230) += twl92230.o