diff options
author | Eric Auger <eric.auger@linaro.org> | 2014-12-22 09:54:51 -0700 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2014-12-22 09:54:51 -0700 |
commit | e2c7d025ada047a3f0225f89ff36626d1bd46e47 (patch) | |
tree | 16e5cb84064562a7148ab4219055245ddb4bc456 /hw/vfio/Makefile.objs | |
parent | df92ee444884ba66b5cc95e3ff3d5579f89ed4aa (diff) | |
download | hqemu-e2c7d025ada047a3f0225f89ff36626d1bd46e47.zip hqemu-e2c7d025ada047a3f0225f89ff36626d1bd46e47.tar.gz |
hw/vfio: create common module
A new common module is created. It implements all functions
that have no device specificity (PCI, Platform).
This patch only consists in move (no functional changes)
Signed-off-by: Kim Phillips <kim.phillips@linaro.org>
Signed-off-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio/Makefile.objs')
-rw-r--r-- | hw/vfio/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/vfio/Makefile.objs b/hw/vfio/Makefile.objs index 31c7dab..e31f30e 100644 --- a/hw/vfio/Makefile.objs +++ b/hw/vfio/Makefile.objs @@ -1,3 +1,4 @@ ifeq ($(CONFIG_LINUX), y) +obj-$(CONFIG_SOFTMMU) += common.o obj-$(CONFIG_PCI) += pci.o endif |